I have a php file lets say file1.php, that printing a variable, its dynamic numbers output that already always increasing, like private message numbers that coming or others :

<?php
echo $variable
?>

i want to put that variable output, in another files page title, lets say file2.php or file3.html,
in the front of the another files page titles, and auto refresh every x seconds, maybe like this :

(1) - another text in the page title

after x seconds, get a private message
(2) - another text in the page title

after another x seconds, get another private message
(3) - another text in the page title

or its ok if just like this, only the variable, without the another text in the page title
(1)

please share your knowledge to make it, maybe using javascript, jquery or others

Member Avatar for diafol

Some Googling on your part should have afforded some answers

myTimer=setInterval('getVar();', 10000); //every 10 seconds
...
function getVar(){
    do your ajax call and prepend data
}

That's a start. You can find many, many resources on ajax calls via jQuery -try the jQuery website.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.