Is it possible to update this frame like this:

<FRAME SRC="<?php echo $row['loc']; ?>" NAME="_location" SCROLLING="AUTO" FRAMEBORDER=0> 

?

I mean, can you do something like this:

 <body onload="FRAME()"> 
  • yes, but using JS and not php - Artem
  • There are tons of options for how to refresh the page. What do you mean? - ling
  • I mean this part is: SRC = "<? php echo $ row ['loc'];?>" Constantly updated, then if the value of $ row ['loc'] changed, then the change would take effect, it was not necessary update the page itself ... - oOKomarOo
  • $row['loc'] generated before the page is displayed, and after display it is lost. If you want to get an answer, explain in Russian what should happen without using technical terms. - ling
  • Well, I'm doing a browser game, and the user's location is constantly changing, what do I need to do so that when it changes, it also displays? - oOKomarOo

0