Iframe göre değişen javascript ve php

1 Cevap php

Bir değiştiğinde olay meydana geldiğinde ben bir iframe yeniden çalışılıyor

heres what i got in javascript tags in the header


`

function getSchedule(oEvent) { var n = document.getElementById("wantedTherapist"); var newn = n.options[n.selectedIndex].value; window.frames['schedule'].src = "schedule.php?therapist="+newn; }

`

and then my iframe tag


iframe id="schedule" name="schedule" src="schedule.php"></iframe>

and finally my select box


<select id="wantedTherapist" name="wantedTherapist" onchange="getSchedule(Event)">
?php
            $query = "SELECT
                    therapistTable.*
                    FROM
                    therapistTable
                    WHERE
                    therapistTable.activated = 'true'
                    ";
            $result = mysql_query($query) or die (mysql_error());
            while($array = mysql_fetch_assoc($result))
            {
            extract($array);
            echo "<option value=\"$username\">$username - $city</option>";
            }
?
</select>

i php etiketleri okları çıkardı ve söz göstermek olurdu böylece ilk iframe kapalı ok. Onun iframe schedule.php yükleniyor ama bunu değişken gönderme değil, ben yanlış yapıyorum? Vaktinden herhangi bir tavsiye için teşekkür ederim

1 Cevap

IFrame ayarlanmış olma URL nedir? Siz iFrame sağ tıklayarak (Firefox) bu teyit ve "Yeni Pencerede Aç Frame" seçerek yapabilirsiniz

URL ise schedule.php?therapist=, daha sonra hata burada gönderdiniz kodu ile. URL için bir değer içeriyorsa therapist, örneğin, schedule.php?therapist=bob, hata schedule.php içinde.