php köprü işlevini çağırarak onclick olay

0 Cevap php

can anybody help me here please? I am using AJAX for pagination in my application. So I am generating hyperlinks with for loop. as follow:

for($t=1; $t<=$hf; $t++)
{
   if($t == $_GET['pageno'])
   {    
       echo $t." ";
   }
   else
   {  
       echo "<a id ='$t' href='javascript:void(0)' onclick='open_page('ajaxinfo.php','content'); javascript:change('$t');'>$t</a>"." "; 
} 
 }

Echo deyiminden Yukarıdaki işlevine çağrı vermez. Ben sadece html köprüyü yazarken Ama bunun yerine bu gayet iyi çalışıyor ve ben sayfa2.html görmek için olsun, benim HTML kodu:

<a id="page2" href="javascript:void(0)" onclick="open_page('ajaxinfo.php','content'); javascript:change('page2');">page2</a>

I don't understand why this is so? But is there any problem in echo's quotes. Please Help.

0 Cevap