Xml dosyası ile Iframe görüntü sorunu

0 Cevap php

Bazı puanları javascript ve daha sonra göndermek olan teknedeki işlenmiş olsun:

window.location.href="scores.php?Result="+result+"&slain="+slain;

Yani önümüzdeki onlar dom çukur GET ile php içine çağrılabilir

$name_value = $xml->createTextNode($_GET['name']);

Bütün yazma ve okuma XML bilge olması gerektiği gibi çalışıyor.

Ama sorun bir iframe içine php dosyasını görüntülemek do çalışıyor.

Kullanıcı puanları görüntülenir alacak program sona erer ve ne zaman bağlantı bu gibi bir şey olacak:

scores.php?Result="1"&slain="5"

But how can i display something like that in a iframe, since that query string will always be random. Although the entire score table is always visible to the user at the end, the idea would just be to display this entire table into a iframe.

Nasıl bir iframe içine bu dosyayı göstermek mümkün olacaktır?

<iframe src ="functions.php" width="100%" height="100"/>
// gives errors at src declartion

0 Cevap