background gradient
s2 - IT photo №27610

The $_GET does not contain utm_source. How to Retrieve UTM Tags in PHP?

Many encounter the issue when UTM tags are not fully transmitted through $_GET or $_SERVER. Why does this happen? The issue lies in the specifics of URL parsing.

“I can’t get all UTM tags from the address. `utm_source` and `utm_medium` are being cut off.”

Solutions

  1. Check the URL. Ensure that all parameters are properly encoded.
  2. Use parse_str. This function will help correctly parse the query string.
  3. Check the server. Some settings may limit the length or format of the URL.

// Получаем текущий url в php
$url = ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; 
$parts = parse_url($url); // делаем из строки массив
parse_str($parts['query'], $query); // из массива получаем запрос

// выводим utm метки полученные из адресной строки через php
echo $query['utm_source'];
echo $query['utm_medium'];
echo $query['utm_campaign'];
echo $query['utm_content'];
ПолучитьCopy

The second solution is based on $_SERVER

$qStr = $_SERVER['QUERY_STRING'];
parse_str($qStr, $query);

echo $query['utm_source'];
echo $query['utm_medium'];
echo $query['utm_campaign'];
echo $query['utm_content'];
ВторойCopy

This code correctly extracts all UTM tags from the string.

P.S. If the solution doesn’t work, check the server settings.

Leave a Reply

Navigation:

Similar

Фото инструкция по отключению ECH в Cloudflare (TLS v3)
21 6
06 Nov 2024

How to Disable ECH (TLS 1.3) in Cloudflare

Internet Blocked: How Cloudflare and ECH Clashed with Roskomnadzor The internet in Russia has faced a massive blockade—thousands of websites using ECH have stopped opening in Russia. What is ECH and Why is it Needed? ECH (Encrypted Client Hello) is a technology that encrypts traffic and hides domain names from ISPs. Enabling ECH on Cloudflare […]

SEOНовости
1727598643_ms_ChatGPT_-_Google_Chrome-min - IT photo №28606
14
29 Sept 2024

OpenAI will increase the cost of ChatGPT from $22 to $44.

OpenAI is rapidly shifting toward commercial operations. According to The New York Times, the subscription cost for ChatGPT will rise by 120% over the next five years. The current subscription price is $20, but it will increase to $22 by the end of the month, and within five years, the price will reach $44 per […]

AIНовости
og_og_1556109592271718992-min - IT photo №28058
184 7
28 Sept 2024

How do I create a Google account 2025?

Creating a Google account is the first step towards personal recommendations on YouTube and using Google API. In this article, we will look at how to easily and quickly create your Google account and ensure its security. Why do I need a Google account? A personal Google account provides access to various services, including Gmail, […]

Google
imgpreview - IT photo №28122
37 3
14 Dec 2023

How do I make a ruble icon on CSS?

In 2013, the Russian ruble received its own unique symbol, becoming one of the last major currencies to have its own symbols. How do I make a ruble sign in HTML? The ruble icon has already been added to many pins and HTML codes. To display the ruble sign in html, use one of the […]

CSSHTMLТексты и символы
chrome_4M6IiaxBAw-min - IT photo №28035
91 4
30 Nov 2023

How do PT3M21S YouTube API convert to 03:21 time?

When working with the YouTube API v3, there is a list method for the Video category (https://www.googleapis.com/youtube/v3/videos ). When using it, you get an array with a video inside which objects contain data about each video, one of these parameters is “duration” which contains time in PT3M21S format. How do I convert this time to […]

GoogleYouTube
ascii-min - IT photo №28032
23 4
26 Nov 2023

ASCII: Full table of codes 2025

ASCII (American Standard Code for Information Interchange) is a standard character encoding system designed to represent text on a computer. This standard includes various tables reflecting a variety of character categories. In this article, we will look at three important ASCII tables: Control Characters, Printable Characters, and Extended Characters encoded in Win-1251 Cyrillic. Control characters […]

HTMLТексты и символы