I am having a problem in my php. What I'm trying to do here is, that I have a .html which directs to an external .js and this js file open up a .php The php extracts data from mysql tables and xml and displays the data on the webpage, (in .html form as table rows). Now when a user clicks on any row, I want that php should open up a new window and I want to display some more data from the same mysql and xml on it (the new window)
for($k=0;$k<=$x->length-1;$k++)
{
for($l=0;$l<=$j-1;$l++)
{
if($y->item($k)->nodeValue==$JobNoArr[$l])
{
$m++;
if ($m%2==0)
{$a="#A5ADEA";}
else
{$a="#D1D1D3";}
//form_html1+="<tr onclick='show(" + x + ")' bgcolor="+ y +">";
echo "<tr bgcolor=". $a .">";
echo "<td>" . $m . "</td>";
echo "<td>" . ($y->item($k)->nodeValue) . "</td>";
echo "<td>" . ($TitleArr[$l]) . "</td>";
echo "<td onclick=show(".$u->item($k)->nodeValue.")><i><font size=2>Click for Abstract</font></i></td>";
echo "<td>" . $uu . "</td>";
echo "</tr>";
}
}
}
Ben kullanırsanız echo "<td onclick=show() "
o .js
dosyasındaki gösterisi işlevini açar ama kullanırsanız echo "<td onclick=".show()."... "
bu php kendisi ama onclick işlevselliği olmadan işlevini açar.
Ben burada açıkça benim sorunu açıklamak mümkün olmuştur olmadığını biliyorum, ama sen bana bu konuda yardımcı olabilir eğer, lütfen bunu yapın yok.