i only want that clients now that my script is still searching
and can anyone tell me it is possible show for example some html when my scripts is executed
my php script is
<?
$get_mp3_list=mysql_query($sql);
for($i_mp3=mysql_numrows($get_mp3_list);$i_mp3>=1;$i_mp3--)
{
$get_mp3_list_data=mysql_fetch_array($get_mp3_list);
<tr bgcolor="#F3F5F8" onmouseover="javascript:style.background='#D9E9FF'" onmouseout="javascript:style.background='#F3F5F8'" style="cursor: default;">
<td colspan=2>
<a onmouseover="test_<?echo $i_mp3?>.createTextRange().execCommand('Copy')" style="cursor: hand"><img src="st_1.GIF" width=13 height=10 border=0 alt="" hspace=0 vspace=5></a>
<input type="hidden" name="test_<?echo $i_mp3?>" value="<?echo $clipboard_LINK?>">
</td>
<td id="st_reg_labels"><?echo "$get_mp3_list_data[mp3_name]";?></td>
</tr>
<tr><td colspan=3 id="st_mp3_div" bgcolor='#AED2FF'></td></tr>
<?
}
?>
<tr><td colspan=3 id="st_mp3_div" style="border: 0px; border-style: none none none none;"></td></tr>
</table>
<?
}
?>
thanks...