description under the movies

i am trying to put a description under the movies on my frontpage but i can get i to work hvat is wrong

the line i am using :

<?php if ($this->video['description'] != ''): ?>
			<div class="video-container">
				<h2 class="description"><?php echo e($this->video['description'] ); ?></h2>

under the movie ther i playing it is working but wen i put the same line in her on the fronpage it is not working
foreach ($this->videos as $video): ?>



<?php echo e($video['title']); ?>

<?php echo e(VText::truncate_chars($video['title'], 50)); ?>

<?php if ($video['ext'] == 'mp4'): ?><?php endif; ?>
<?php if ($video['premium'] == '1'): ?>Premium<?php endif; ?>

<?php echo VDate::duration($video['duration']); ?>

<?php echo VDate::nice($video['add_time']); ?>
<?php echo $video['total_views'],' '; if ($video['total_views'] == '1'): echo __('view'); else: echo __('views'); endif; ?> <?php if ($this->video['description'] != ''): ?>
			<div class="video-container">
				<h2 class="description"><?php echo e($this->video['description'] ); ?></h2>
					<div class="clear"></div>

What exactly is the issue? Is the code throwing up errors or just not showing up?

<?php if ($this->video['description'] != ''): ?>

first line in your code is above…

try <?php if ($this->video['description'] != ''); ?>

colon to semicolon…then what happens?

Sponsor our Newsletter | Privacy Policy | Terms of Service