CauseThis notification is shown when the Referer of the page does not match the list of approved domains stored against your apiKey. Tiny Cloud verifies the domain TinyMCE is loading from by checking the domain portion of the Referer header in the network request. You can view a list of your approved domains on your Tiny Account.Written by Vincy, a web developer with 15+ years of experience and a Masters degree in Computer Science. She specializes in building modern, lightweight websites using PHP, JavaScript, ...
To update a PHP variable without reloading the page, you'll typically use AJAX (Asynchronous JavaScript and XML). Here's a step-by-step guide on how to achieve this:Step 1: Create a PHP ScriptCreate a PHP script (e.g., update.php) that handles the AJAX request and updates the variable. This script will receive data and can perform operations like updating a database or modifying a session variable.session_start(); // Start the session if you are using session variables
if (isset($_POST['newValue'])) {
...