Witam na początku pragnę dodąc ze jestem troche jeszcze zielony w tych sprawach i nie rozumiem za bardzo tego błedu dlatego prosze o pomoc.Błą jest następujący Parse error: syntax error, unexpected T_STRING on line 10
<?php
define('imgFolder','galeria'); define('emptylmgName','empty'); $prevlmgPath = $currentlmgPath = $nextlmgPath = imgFolder.'/'.
epmtylmgName.extension;
$photolndex = (isset($_GET['photo'])&& $_GET['photo']<=imgCount)?
intval($_GET['photo']):1;
$left = ($photolndex>1)? true:false;
$right = ($photolndex<imgCount)? true:false;
$prevlmgPath = imgFolder.'/'.str_pad(($photolndex-1),3,'0',
STR_PAD_LEFT).'.jpg';
$currentlmgPath = imgFolder.'/'.str_pad($photolndex,3,'0',
STR_PAD_LEFT).'.jpg';
$nextlmgPath = imgFolder.'/'.str_pad(($photolndex+1),3,'0',
STR_PAD_LEFT).'.jpg';
?>
<table id="galleryTable">
<td width="15%">
<tr>
<?php
if($left)echo '<a href="index.php?a=galeria&photo='.($photolndex-1). ""><img id="prevlmg"src="".$prevlmgPath.""/></a>';else echo'<img
src="".(imgFolder.'/'.emptylmgName.extension).""/>';?>
</tr>