Answer the question
In order to leave comments, you need to log in
How to put a metric code or other analytics on the site if there is only a php redirect in the index page?
There is a simple php site with only the following code in the index page:
<?php
// Initialization
include_once('includes/load.php');
// If there is an action
if (isset($_GET['action']) || isset($_POST['action']))
// Call the actions script
include_once('actions.php');
else
// Includes the default page
include_once('import-list.php');
Question: how to embed the metric counter in this page or as a separate file?
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question