0

I have two ways to get to my chat.php page. One way is via profile page link and the other is via the menu. My question is, how can I know in chat.php, where the page is loaded from?

davidelias16
  • 91
  • 1
  • 10

1 Answers1

0

I understand require this information using javascript, if it is the case use referrer

const referrer = document.referrer;

MDN

The Document.referrer property returns the URI of the page that linked to this page.

Document.referrer

Mario
  • 4,784
  • 3
  • 34
  • 50