Php code question

Hi
I am using photo php code, its working fine, there is one thing i like to edit in the code, but cant find how, i like to disable the images name that appear under the images, see link

I modified your post to make the code readable, next time use

 instead of 

:wink:

Not read through the code thoroughly yet, but I’m assuming this should do it…

<? 
$curfile = basename(

%4$s

SERVER['PHP_SELF'] ); 
?> 
<html> 
<style> 
<!-- 
body { 
    font-family: Verdana; 
    font-size: 11px; 
    color: #000000; 
} 
table { 
    font-family: Verdana; 
    font-size: 12px; 
    color: #000000; 
} 
a { 
    text-decoration: none; 
    color: darkred; 
} 
--> 
</style> 
<? 
if( !$popup ) 
{ 
?> 
<script language=JavaScript> 
<!-- 
function mynd(album,mynd) 
{ 
    window.open('<?=$curfile?>?sAlbum='+album+'&sPic='+mynd,'myndasafn','status=0,menu=0,toolbar=0  ,scrollbarsl=no,width=10,height=20'); 
    return false; 
} 
--> 
</script> 
<? 
} 
# Vinsamlegast stilltu þetta allt eftir þínum þörfum... 

# Notast við albúm eða ekki; 1 = já. 0 = nei. 
# 0 = Þú setur myndir í myndamöppuna. 
# 1 = Þú setur albúmin í myndamöppuna (albúm = möppur með myndum í) 
$album = 0; 

# Hvort þú viljir að myndin birtist í popup eða ekki; 1 = já. 0 = nei. 
$popup = 1; 

# Mappan sem við geymum allar myndirnar/albúmin í. 
$mappa = 'myndir'; 

# Hve margar myndir í röðinni. 
$cols = 3; 

# Hve margar raðir þangað til það kemur ný blaðsíða. 
$rows = 3; 

# Ekki stilla neitt fyrir neðan þetta. 

if(

%4$s

GET['sAlbum'] ) 
    $heild = $mappa . '/' .

%4$s

GET['sAlbum']; 
else 
    $heild = $mappa; 

if(

%4$s

GET['sPic'] ) 
{ 
    if( $popup ) 
    { 
?> 
<script> 
var isNav4, isIE4; 
if (parseInt(navigator.appVersion.charAt(0)) >= 4) { 
isNav4 = (navigator.appName == "Netscape") ? 1 : 0; 
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0; 
} 
function fitWindowSize() { 
if (isNav4) { 
window.innerWidth = document.layers[0].document.images[0].width; 
window.innerHeight = document.layers[0].document.images[0].height; 
} 
if (isIE4) { 
window.resizeTo(500, 500); 
width = 500 - (document.body.clientWidth -  document.images[0].width); 
height = 500 - (document.body.clientHeight -  document.images[0].height); 
window.resizeTo(width, height); 
   } 
   } 
</script> 
<body onload="fitWindowSize()" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> 
<? 
    } 
    else 
        echo '<div align="center"><a href="' . $curfile . '?sAlbum=' .

%4$s

GET['sAlbum'] . '&sPage=' .

%4$s

GET['sPage'] . '">Aftur í albúm</a></div><br><br>'; 
       
?> 
<div align="center"><img src="<? if( $popup ) echo

%4$s

GET['sAlbum'] . '/' .

%4$s

GET['sPic']; else echo $heild . '/' .

%4$s

GET['sPic']; ?>" border="0" style="border: 1px solid #000000" <? if( $popup ) { ?>onClick="window.close();window.opener.focus()" style="cursor: hand" title="Loka glugga"<? } ?>></div> 
<? 
} 
elseif( !

%4$s

GET['sAlbum'] && $album ) 
{ 
?> 
    <b>Veldu albúm:</b><br><br> 
<? 
    $handle = opendir( $mappa ); 
    while( false !== ( $skra = readdir( $handle ) ) ) 
    { 
        if( $skra != '.' && $skra != '..' && is_dir( $mappa . '/' . $skra ) ) 
        { 
?> 
            <a href="<?=$curfile?>?sAlbum=<?=$skra?>"><?=str_replace( '_', ' ', $skra )?></a><br> 
<? 
        } 
    } 
} 
else 
{ 
    $perpage = $cols * $rows; 
       
    if( !

%4$s

GET['sPage'] ) 
        $sPage = 1; 
    else 
        $sPage =

%4$s

GET['sPage']; 
           
    $begin = ( $sPage * $perpage ) - $perpage; 
    $end = ( $sPage * $perpage ) - 1; 
       
    $handle = opendir( $heild ); 
    while( false !== ( $pic = readdir( $handle ) ) ) 
    { 
        if( $pic != '.' && $pic != '..' && !is_dir( $heild . '/' . $pic ) ) 
            $arrPics[] = $pic; 
    } 
       
    $num = count( $arrPics ); 

    $pages = ceil( $num / $perpage ); 
    if( $pages != 1 ) 
    { 
?> 
        <div align="center"><font size="3"> 
<? 
        for( $i = 1; $i <= $pages; $i++ ) 
        { 
           
            if( $sPage == $i ) 
                echo $i; 
            else 
            { 
?> 
                <a href="<?=$curfile?>?sAlbum=<?=

%4$s

GET['sAlbum']?>&sPage=<?=$i?>" style="text-decoration: none"><u><?=$i?></u></a> 
<? 
            } 
               
            if( $i != $pages ) 
                echo ' '; 
        } 
?> 
        </font></div> 
<? 
    } 
?> 
    <table border="0" cellspacing="3" align="center"> 
    <tr> 
    <td colspan="<?=$cols?>">&nbsp;</td> 
    </tr> 
    <tr> 
<? 
    $i = 0; 
    for( $j = $begin; $j <= $end; $j++ ) 
    { 
?> 
        <td align="center" valign="top"> 
<? 
        if( $arrPics[$j] ) 
        { 
?> 
            <a href="<? if( !$popup ) echo $curfile . '?sAlbum=' .

%4$s

GET['sAlbum'] . '&sPage=' . $sPage . '&sPic=' . $arrPics[$j]; else echo '#' ?>"<? if( $popup ) { ?> onClick="return mynd('<?=$heild?>','<?=$arrPics[$j]?>')"<? } ?>><img src="<?=$heild?>/<?=$arrPics[$j]?>" height="100" border="0" style="border: 1px solid #000000"></a> 
<? 
        } 
?> 
        </td> 
<? 
               
        $i++; 
           
        if( $i == $cols ) 
        { 
?> 
            </tr><tr> 
<? 
            $i = 0; 
        } 
    } 
?> 
    </tr> 
    </table> 
<? 
} 

if( !

%4$s

GET['sPic'] ) 
{ 
?> 
<br><br> 
<? 
} 
?> 
</body> 
</html> 

I just removed the

<br><?=$arrPics[$j]?>

from the line which looked like it displayed the picture on the page

I will, thx for helping, i am learning on this

KaiserSouze, thx it worked fine!

How do i add nex and previous in the popup window

u mean pagination ? Google Can help u on that one…