Issue with parse errror

Hi,

i’ve got an issue with a parse error where i am trying to display my pictures and descriptions but i can’t seem to see if i need to close another bracket or appostraphe ect. Would somebody mind taking a look please.



<?php
			     if( isset($images) )
			    {
				 echo '<table align="center">';
		     
				   $step = 2;
				   for($i = 0; $i < count($images); $i+=$step)
				   {
					  echo '<tr>';
					  for($j = 0; $j < $step; $j++)
					  { 
						 if(isset($images[$i+$j]) )
						 {
							echo '<td><img src="./images/'.$images[$i+$j]['Filename'].'" width="250" height="250" ></td>';
							echo '</tr>';
							
							
						 }
					  }
					  
					  echo '<tr>';
					  
					  for($j=0; $j < $step; $j++)
					  {
						 
						if(isset($images[$i+$j]) )
						 {
							
							// Error here on this line somewhere???
							echo '<td><b>Description:</b>'.$images[$i+$j]['Description'] . "<br></td>"';
							echo '</tr>';
							
							
						 }
 
					  }
	  
					  echo '</table>';   
				   }
			    
			    }
		    
		     ?>





Never mind, the error is in the line you yourself identified:


// Error here on this line somewhere???
echo '<td><b>Description:</b>'.$images[$i+$j]['Description'] . "<br></td>"';

Eliminate the single quote at the end of the line.

What is the error?