PHP gevorderde |
|
ik maak een pagina waarmee gebruikers hun bestanden kunnen bewerken, verwijderen enz.
maar het probleem is: ik heb knopjes voor Verwijder en Bewerken enzo, die heb ik als plaatje.
in IE werkt het perfect, maar in FF staat er alleen maar de tekst 'Preview' en 'Edit'. ik zie de plaatjes niet, maar ik kan er dan wel op klikken.
Wie kan me helpen:?:
<?php
print "</td><td>";
print "<img alt=\"Preview\" onmouseover=\"javascript:window.status='Preview'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\search.gif\" onClick=\"location.href='".$path."/".$f_arr[$i]."'\">";
print "<img alt=\"Edit\" onmouseover=\"javascript:window.status='Edit'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\edit.gif\" onClick=\"window.open('edit.php?file=".$path."/".$f_arr[$i]."', 'edit', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">";
print "<img alt=\"Delete\" onmouseover=\"javascript:window.status='Delete'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\delete.gif\" onClick=\"location.href='?action=deletefile&path=".$path."&file=".$path."/".$f_arr[$i]."'\">";
print "<img alt=\"Copy\" onmouseover=\"javascript:window.status='Copy'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\copy.gif\" onClick=\"window.open('copy.php?path=".$path."/".$f_arr[$i]."', 'copy', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">";
print "<img alt=\"Move\" onmouseover=\"javascript:window.status='Move'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\move.gif\" onClick=\"window.open('move.php?path=".$path."/".$f_arr[$i]."', 'move', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">";
print "</td></tr>";
?>
<?php print "<img alt=\"Preview\" onmouseover=\"javascript:window.status='Preview'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\search.gif\" onClick=\"location.href='".$path."/".$f_arr[$i]."'\">"; print "<img alt=\"Edit\" onmouseover=\"javascript:window.status='Edit'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\edit.gif\" onClick=\"window.open('edit.php?file=".$path."/".$f_arr[$i]."', 'edit', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">"; print "<img alt=\"Delete\" onmouseover=\"javascript:window.status='Delete'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\delete.gif\" onClick=\"location.href='?action=deletefile&path=".$path."&file=".$path."/".$f_arr[$i]."'\">"; print "<img alt=\"Copy\" onmouseover=\"javascript:window.status='Copy'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\copy.gif\" onClick=\"window.open('copy.php?path=".$path."/".$f_arr[$i]."', 'copy', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">"; print "<img alt=\"Move\" onmouseover=\"javascript:window.status='Move'; document.body.style.cursor = 'hand'\" onmouseout=\"javascript:window.status=''; document.body.style.cursor = ''\" border=0 src=\"..\\..\\images\\move.gif\" onClick=\"window.open('move.php?path=".$path."/".$f_arr[$i]."', 'move', 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=500,height=400,left=150,top=150');\">"; ?>
|