PHP Classes

I surche a php-Class to show Values in a website by dynamically: I search a php-Class to show dynamically changing values in a we

Recommend this page to a friend!
  All requests RSS feed  >  I surche a php-Class to show Values i...  >  Request new recommendation  >  A request is featured when there is no good recommended package on the site when it is posted. Featured requests  >  No recommendations No recommendations  

I surche a php-Class to show Values in a website by dynamically

Edit

Picture of Robert Schuster by Robert Schuster - 3 months ago (2026-04-14)

I search a php-Class to show dynamically changing values in a we

This request is clear and relevant.
This request is not clear or is not relevant.

0

I search a php-Class to show dynamically changing values in a website.

  • 1 Clarification request
  • 1. Picture of Christos Drogidis by Christos Drogidis - 2 months ago (2026-04-22) Reply

    There isn’t a ready‑made PHP class that makes a page update by itself. PHP only provides the data. To show dynamic values on the page, you need a bit of JavaScript that asks PHP for the new data (for example with AJAX).

    For example...

    [value.php] <?php echo json_encode(["value" => rand(1, 100)]); ?>

    [index.html] <div id="value">Loading...</div>

    <script> setInterval(() => { fetch("values.php")

    .then(r => r.json())
    .then(data => {
      document.getElementById("value").textContent = data.value;
    });
    

    }, 2000); </script>

    Ask clarification

    1 Recommendation

    Dynamic Values System: Manipulate values to be displayed dynamically

    This package can manipulate values to be displayed dynamically.

    It provides classes that can perform operations with values that can be useful when these values will be displayed and updated over time.

    Currently it provides classes to:

    - Store and retrieve values in a Redis instance

    - Get values from data sources

    - Provide a data source of random values

    - Validate values to be used as keys
    This recommendation solves the problem.
    This recommendation does not solve the problem.

    0

    Picture of Dwight José Trujillo Barco by Dwight José Trujillo Barco package author package author Reputation 25 - 2 months ago (2026-04-27) Comment

    https://www.phpclasses.org/package/13712-PHP-Enterprise-grade-real-time-dynamic-values-system-with-military-grade-security-WAF-rate-limiting-and-Redis-cluster-support-.html


    Recommend package
    : 
    :