Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/header-footer/admin/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/header-footer/admin/options.php
<?php
defined('ABSPATH') || exit;

// Quick security patch, to be better integrated
if (!current_user_can('administrator')) {
    die();
}

load_plugin_textdomain('header-footer', false, 'header-footer/languages');

require_once __DIR__ . '/controls.php';

//update_option('hefo_dismissed', []);

$dismissed = get_option('hefo_dismissed', []);

if (isset($_REQUEST['dismiss']) && check_admin_referer('dismiss')) {
    $dismissed[$_REQUEST['dismiss']] = 1;
    update_option('hefo_dismissed', $dismissed);
    wp_redirect('?page=header-footer%2Fadmin%2Foptions.php');
    exit();
}

if (isset($_POST['save'])) {
    if (!wp_verify_nonce($_POST['_wpnonce'], 'save'))
        die('Page expired');
    $options = hefo_request('options');

    // Another thing to be improved...
    if (!isset($options['enable_php'])) {
        $options['enable_php'] = '0';
    }

    if (empty($options['mobile_user_agents'])) {
        $options['mobile_user_agents'] = "phone\niphone\nipod\nandroid.+mobile\nxoom";
    }
    $agents1 = explode("\n", $options['mobile_user_agents']);
    $agents2 = array();
    foreach ($agents1 as &$agent) {
        $agent = trim($agent);
        if (empty($agent))
            continue;
        $agents2[] = strtolower($agent);
    }
    $options['mobile_user_agents_parsed'] = implode('|', $agents2);

    update_option('hefo', $options);
} else {
    $options = get_option('hefo');
}
?>

<script>
    jQuery(function () {

        jQuery("textarea.hefo-cm").each(function () {
            wp.codeEditor.initialize(this);
        });
        jQuery("#hefo-tabs").tabs();
    });
</script>

<div class="wrap">
    <!--https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5PHGDGNHAYLJ8-->

    <h2>Head, Footer and Post Injections</h2>

    <?php if (!isset($dismissed['rate'])) { ?>
        <div class="notice notice-success"><p>
                I never asked before and I'm curious: <a href="http://wordpress.org/extend/plugins/header-footer/" target="_blank"><strong>would you rate this plugin</strong></a>?
                (takes only few seconds required - account on WordPress.org, every blog owner should have one...). <strong>Really appreciated, Stefano</strong>.
                <a class="hefo-dismiss" href="<?php echo wp_nonce_url($_SERVER['REQUEST_URI'] . '&dismiss=rate&noheader=1', 'dismiss') ?>">&times;</a>
            </p>
        </div>
    <?php } ?>

    <?php if (!isset($dismissed['newsletter'])) { ?>
        <div class="notice notice-success"><p>
                If you want to be informed of important updated of this plugin, you may want to subscribe to my (rare) newsletter<br>
            <form action="http://www.satollo.net/?na=s" target="_blank" method="post">
                <input type="hidden" value="header-footer" name="nr">
                <input type="hidden" value="2" name="nl[]">
                <input type="email" name="ne" value="<?php echo esc_attr(get_option('admin_email')) ?>">
                <input type="submit" value="Subscribe">
            </form>
            <a class="hefo-dismiss" href="<?php echo wp_nonce_url($_SERVER['REQUEST_URI'] . '&dismiss=newsletter&noheader=1', 'dismiss') ?>">&times;</a>
            </p>
        </div>
    <?php } ?>

    <?php if (!isset($dismissed['automation'])) { ?>
        <div class="notice notice-success"><p>
                I'm developing a new plugin:
                <a href="https://automation.webagile.net" target="_blank">Welcome Email for Contact Form 7</a> (and more).
                Available for direct donwload until I wait the approvation to publish on WP.org.
            <a class="hefo-dismiss" href="<?php echo wp_nonce_url($_SERVER['REQUEST_URI'] . '&dismiss=automation&noheader=1', 'dismiss') ?>">&times;</a>

        </div>
    <?php } ?>

    <div style="padding: 15px; background-color: #fff; border: 1px solid #eee; font-size: 16px; line-height: 22px; margin-bottom: 10px;">
        Did this plugin save you lot of time and troubles?
        <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5PHGDGNHAYLJ8" target="_blank"><img style="vertical-align: bottom" src="<?php echo plugins_url('header-footer') ?>/images/donate.png"></a>
        To help children. Even <b>2$</b> help. <a href="http://www.satollo.net/donations" target="_blank">Please read more</a>. Thank you.
        <br>
        Are you profitably using this free plugin for your customers? One more reason to consider a
        <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5PHGDGNHAYLJ8" target="_blank">donation</a>. Thank you.
    </div>

    <div style="padding: 15px; background-color: #fff; border: 1px solid #eee; font-size: 16px; line-height: 22px">
        <?php
        if (apply_filters('hefo_php_exec', $options['enable_php'])) {
            esc_html_e('PHP is allowed in your code.', 'header-footer');
        } else {
            esc_html_e('PHP is NOT allowed in your code (disabled by your theme or a plugin)', 'header-footer');
        }
        ?>
        <br>

        <?php esc_html_e('Mobile configuration is now deprecated', 'header-footer'); ?>.
        <a href="https://www.satollo.net/plugins/header-footer" target="_blank" class="readmore"><?php esc_html_e('Read more', 'header-footer'); ?></a>

    </div>


    <form method="post" action="">
        <?php wp_nonce_field('save') ?>

        <p>
            <input type="submit" class="button-primary" name="save" value="<?php esc_attr_e('save', 'header-footer'); ?>">
        </p>

        <div id="hefo-tabs">
            <ul>
                <li><a href="#tabs-first"><?php esc_html_e('Head and footer', 'header-footer'); ?></a></li>
                <li><a href="#tabs-post"><?php esc_html_e('Posts', 'header-footer'); ?></a></li>
                <li><a href="#tabs-cpts"><?php esc_html_e('CPTs', 'header-footer'); ?></a></li>
                <li><a href="#tabs-post-inner"><?php esc_html_e('Inside posts', 'header-footer'); ?></a></li>
                <li><a href="#tabs-page"><?php esc_html_e('Pages', 'header-footer'); ?></a></li>
                <li><a href="#tabs-excerpt"><?php esc_html_e('Excerpts', 'header-footer'); ?></a></li>
                <li><a href="#tabs-5"><?php esc_html_e('Snippets', 'header-footer'); ?></a></li>
                <li><a href="#tabs-amp"><?php esc_html_e('AMP', 'header-footer'); ?></a></li>
                <li><a href="#tabs-generics"><?php esc_html_e('Generics', 'header-footer'); ?></a></li>
                <li><a href="#tabs-8"><?php esc_html_e('Advanced', 'header-footer'); ?></a></li>
                <li><a href="#tabs-7"><?php esc_html_e('Notes and...', 'header-footer'); ?></a></li>
            </ul>


            <div id="tabs-first">

                <h3><?php esc_html_e('<HEAD> page section injection', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php esc_html_e('On every page', 'header-footer') ?></label>
                        <?php hefo_base_textarea_cm('head'); ?>
                    </div>
                    <div class="col-2">
                        <label><?php esc_html_e('Only on the home page', 'header-footer') ?></label>
                        <?php hefo_base_textarea_cm('head_home'); ?>
                    </div>
                </div>

                <h3><?php esc_html_e('After the <BODY> tag', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('body'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_body_enabled', __('Mobile', 'header-footer')); ?>
                        <?php hefo_base_textarea_cm('mobile_body'); ?>
                    </div>

                </div>
                <h3><?php esc_html_e('Before the &lt;/BODY&gt; closing tag (footer)', 'header-footer') ?></h3>
                <div class="row">
                    <div class="col-2">
                        <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('footer'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_footer_enabled', __('Mobile', 'header-footer')); ?>
                        <?php hefo_base_textarea_cm('mobile_footer'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

            </div>

            <div id="tabs-generics">

                <?php for ($i = 1; $i <= 5; $i++) { ?>
                    <h3>Generic injection <?php echo $i; ?></h3>
                    <p>Inject before the <?php hefo_base_text('generic_tag_' . $i); ?> marker</p>
                    <div class="row">
                        <div class="col-2">
                            <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                            <?php hefo_base_textarea_cm('generic_' . $i); ?>
                        </div>
                        <div class="col-2">
                            <?php hefo_base_checkbox('mobile_generic_enabled_' . $i, __('Mobile', 'header-footer')); ?>
                            <?php hefo_base_textarea_cm('mobile_generic_' . $i); ?>
                        </div>
                    </div>
                    <div class="clearfix"></div>
                <?php } ?>
                <div class="clearfix"></div>
            </div>



            <div id="tabs-post">
                <p>
                    Please take the time to <a href="http://www.satollo.net/plugins/header-footer" target="_blank">read this page</a> to understand how the "mobile" configuration works.
                    See the "advanced tab" to configure the mobile device detection.
                </p>

                <h3><?php esc_html_e('Before the post content', 'header-footer'); ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('before'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_before_enabled', __('Mobile', 'header-footer')); ?>
                        <?php hefo_base_textarea_cm('mobile_before'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

                <h3><?php esc_html_e('After the post content', 'header-footer'); ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('after'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_after_enabled', __('Mobile', 'header-footer')); ?>
                        <?php hefo_base_textarea_cm('mobile_after'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>
            </div>

            <div id="tabs-cpts">
                <?php
                $post_types = get_post_types(['public' => true], 'objects', 'and');
                ?>

                <?php foreach ($post_types as $post_type) { ?>
                    <?php
                    if ($post_type->name === 'post' || $post_type->name === 'page' || $post_type->name === 'attachment') {
                        continue;
                    }
                    ?>
                    <h3><?php echo esc_html($post_type->label) ?></h3>
                    <p>
                    <?php hefo_field_select($post_type->name . '_mode', [''=>__('Use the post configuration', 'header-footer'),
                        'enabled'=>__('Enable injections below', 'header-footer'),
                        'disabled'=>__('Do not inject', 'header-footer')]); ?>
                    </p>
                    <div class="row">

                        <div class="col-2">
                            <label><?php esc_html_e('Before the post content', 'header-footer'); ?></label>
                            <?php hefo_base_textarea_cm($post_type->name . '_before'); ?>
                        </div>





                        <div class="col-2">
                            <label><?php esc_html_e('After the post content', 'header-footer'); ?></label>
                            <?php hefo_base_textarea_cm($post_type->name . '_after'); ?>
                        </div>

                    </div>

                    <div class="clearfix"></div>

                <?php } ?>
            </div>

            <div id="tabs-post-inner">

                <?php for ($i = 1; $i <= 5; $i++) { ?>
                    <h3>Inner post injection <?php echo $i; ?></h3>
                    <?php hefo_rule($i); ?>
                    <div class="row">
                        <div class="col-2">
                            <label><?php esc_html_e('Desktop', 'header-footer') ?>*</label>
                            <?php hefo_base_textarea_cm('inner_' . $i); ?>
                        </div>
                        <div class="col-2">
                            <?php hefo_base_checkbox('mobile_inner_enabled_' . $i, __('Mobile', 'header-footer')); ?>
                            <?php hefo_base_textarea_cm('mobile_inner_' . $i); ?>
                        </div>
                    </div>
                    <div class="clearfix"></div>
                <?php } ?>
            </div>


            <div id="tabs-page">

                <?php hefo_base_checkbox('page_use_post', __('Use the post configurations', 'header-footer')); ?><br>
                <?php hefo_base_checkbox('page_add_tags', __('Let pages to have tags', 'header-footer')); ?><br>
                <?php hefo_base_checkbox('page_add_categories', __('Let pages to have categories', 'header-footer')); ?>

                <h3><?php esc_html_e('Before the page content', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php _e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('page_before'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_page_before_enabled', __('Mobile', 'header-footer')); ?><br>
                        <?php hefo_base_textarea_cm('mobile_page_before'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

                <h3><?php _e('After the page content', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-2">
                        <label><?php _e('Desktop', 'header-footer') ?>*</label>
                        <?php hefo_base_textarea_cm('page_after'); ?>
                    </div>
                    <div class="col-2">
                        <?php hefo_base_checkbox('mobile_page_after_enabled', __('Mobile', 'header-footer')); ?><br>
                        <?php hefo_base_textarea_cm('mobile_page_after'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

            </div>

            <div id="tabs-excerpt">

                <p><?php esc_html_e('It works only on category and tag pages.', 'header-footer'); ?></p>
                <table class="form-table">
                    <tr valign="top"><?php hefo_field_textarea('excerpt_before', __('Code to be inserted before each post excerpt', 'header-footer'), ''); ?></tr>
                    <tr valign="top"><?php hefo_field_textarea('excerpt_after', __('Code to be inserted after each post excerpt', 'header-footer'), ''); ?></tr>
                </table>
            </div>

            <!-- AMP -->

            <div id="tabs-amp">
                <p>
                    You need the <a href="https://it.wordpress.org/plugins/amp/" target="_blank">AMP</a> plugin. Other AMP plugins could be supported
                    in the near future.
                </p>

                <h3><?php esc_html_e('<HEAD> page section', 'header-footer') ?></h3>
                <div class="row">
                    <div class="col-1">
                        <?php hefo_base_textarea_cm('amp_head'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

                <h3><?php esc_html_e('Extra CSS', 'header-footer') ?></h3>
                <div class="row">
                    <div class="col-1">
                        <?php hefo_base_textarea_cm('amp_css'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

                <h3><?php esc_html_e('Just after the <BODY> tag', 'header-footer') ?></h3>
                <div class="row">
                    <div class="col-1">
                        <?php hefo_base_textarea_cm('amp_body'); ?>
                    </div>
                </div>


                <div class="clearfix"></div>

                <h3><?php esc_html_e('Before the post content', 'header-footer') ?></h3>
                <div class="row">
                    <div class="col-1">

                        <?php hefo_base_textarea_cm('amp_post_before'); ?>
                    </div>
                </div>

                <div class="clearfix"></div>

                <h3><?php esc_html_e('After the post content', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-1">

                        <?php hefo_base_textarea_cm('amp_post_after'); ?>

                    </div>
                </div>
                <div class="clearfix"></div>

                <h3><?php esc_html_e('Footer', 'header-footer') ?></h3>
                <div class="row">

                    <div class="col-1">

                        <?php hefo_base_textarea_cm('amp_footer'); ?>

                    </div>
                </div>
                <div class="clearfix"></div>

            </div>


            <div id="tabs-5">
                <p>
                    <?php esc_html_e('Common snippets that can be used in any header or footer area referring them as [snippet_N] where N is the snippet number
            from 1 to 5. Snippets are inserted before PHP evaluation.', 'header-footer'); ?><br />
                    <?php esc_html_e('Useful for social button to be placed before and after the post or in posts and pages.', 'header-footer'); ?>
                </p>
                <table class="form-table">
                    <?php for ($i = 1; $i <= 5; $i++) { ?>
                        <tr valign="top"><?php hefo_field_textarea('snippet_' . $i, __('Snippet ' . $i, 'header-footer'), ''); ?></tr>
                    <?php } ?>
                </table>
                <div class="clearfix"></div>
            </div>

            <div id="tabs-8">
                <table class="form-table">
                    <tr valign="top">
                        <th scope="row">PHP</th>
                        <?php hefo_field_checkbox_only2('enable_php', __('Enable PHP execution', 'header-footer'), ''); ?>
                    </tr>
                </table>
                <table class="form-table">
                    <tr valign="top">
                        <?php
                        hefo_field_textarea('mobile_user_agents', __('Mobile user agent strings', 'header-footer'), 'For coders: a regular expression is built with those values and the resulting code will be<br>'
                                . '<code>preg_match(\'/' . $options['mobile_user_agents_parsed'] . '/\', ...);</code><br>' .
                                '<a href="http://www.satollo.net/plugins/header-footer" target="_blank">Read this page</a> for more.');
                        ?>

                    </tr>
                </table>

                <h3>Head meta links</h3>
                <p>
                    WordPress automatically add some meta link on the head of the page, for example the RSS links, the previous and next
                    post links and so on. Here you can disable those links if not of interest.
                </p>
                <table class="form-table">
                    <tr valign="top">
                        <th scope="row">Disable css link id</th>
                        <?php hefo_field_checkbox_only('disable_css_id', __('Disable the id attribute on css links generated by WordPress', 'header-footer'), '', 'http://www.satollo.net/plugins/header-footer#disable_css_id'); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">Disable css media</th>
                        <?php hefo_field_checkbox_only('disable_css_media', __('Disable the media attribute on css links generated by WordPress, id the option above is enabled.', 'header-footer'), '', 'http://www.satollo.net/plugins/header-footer#disable_css_media'); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">Extra feed links</th>
                        <?php hefo_field_checkbox_only('disable_feed_links_extra', __('Disable extra feed links like category feeds or single post comments feeds', 'header-footer')); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">Short link</th>
                        <?php hefo_field_checkbox_only('disable_wp_shortlink_wp_head', __('Disable the short link for posts', 'header-footer')); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">WLW Manifest</th>
                        <?php hefo_field_checkbox_only('disable_wlwmanifest_link', __('Disable the Windows Live Writer manifest', 'header-footer')); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">RSD link</th>
                        <?php hefo_field_checkbox_only('disable_rsd_link', __('Disable RSD link', 'header-footer')); ?>
                    </tr>
                    <tr valign="top">
                        <th scope="row">Adjacent post links</th>
                        <?php hefo_field_checkbox_only('disable_adjacent_posts_rel_link_wp_head', __('Disable adjacent post links', 'header-footer')); ?>
                    </tr>
                </table>
                <div class="clearfix"></div>
            </div>


            <div id="tabs-7">
                <table class="form-table">
                    <tr valign="top"><?php hefo_field_textarea('notes', __('Notes and parked codes', 'header-footer'), ''); ?></tr>
                </table>
                <div class="clearfix"></div>
            </div>




        </div>
        <p>* if no mobile alternative is activated</p>
        <p class="submit"><input type="submit" class="button-primary" name="save" value="<?php esc_attr_e('save', 'header-footer'); ?>"></p>

    </form>
</div>



FADUS Healthcare – Affy Pharma Pvt Ltd

SEFOX

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

SYREGO – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

PEMOX-CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

CEFIDUS CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

CEFIDUS

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

SAMTHRO

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

PARADUS-DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

FADSPAS-M

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

FADOFLOX

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

CUFFAD

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

FAD-HUNGRY

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

APRAZ-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

TAPEN-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

APRAZ-40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

NTICID

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

FAD-ZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

CAROFE

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

FA-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

CALERA

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

IROFAD

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

FAD-CCD

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

FADSPAS-M

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

FADACIT

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARA – T – FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

FASFO

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

FAD-SOFT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

CLOTIREL

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

KETOFAD

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

KETOFAD-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

DANDNIL

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FADFLU

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

FADVIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCODUS GOLD

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

VITERA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

EWHEA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

VITERA-4G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Omega 3 Fatty Acid + Ginseng Extract + Ginkgo Bilaba Extract + Grape Seed Extract + Ginseng Extract + Multimineral + Multivitamin + Antioxidants + Trace Elements

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

VITERA-G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

LYCODUS

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

CEFIDUS-200-LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

CEFIDUS-CV 325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

PEMOX-CLAV 625

TABLETS (Alu-Alu)
10X1X7

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

FADFLOX-O

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

LEVOXA-500

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

CEFIDUS-O

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

FADFLOX

TABLETS (Alu-Alu)
10X1X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

RTIs, Otitis Media, Sinustis, UTIs, Typhoid

PEMOX-CLAV 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

EFTRI-S 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

CEFOPER-S 1.5

INJECTIONS
1.5gm

Composition

Cefaperazone 1000mg + Sulbactam 500mg +WFI

Indications & Uses

Peritonitis, Bacterial Simusitis, Cholecystitis, Meningitis

BEMRO

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

PIPDUS-T-4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

EFTRI-T 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

SEFOX-200

TABLETS (Alu-Alu)
10X1X6

Composition

Cefpodoxime Proxetil 200mg

Indications & Uses

Pharyngitis, CAP, Tonsilitis

BRONKUFF

SYRUP
100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BRONKUFF-BR

SYRUP
100ml

Composition

Terbutaline Sulphate 2.5mg + Bromhexine HCI 8mg + Guaiphenesin 100mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

CUFEX-CP

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

MONLEV

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

LOVOFAD

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket