Bana bildiriniz, benim aşağıdaki kod ile neyin yanlış:
<a href="<?php echo $_url; ?>" title="<?php echo $_name; ?>">
<?php
$logo2 = $_url.'/image/data/logo2.png';
$logo = $_url.'/image/data/logo.png';
if (file_exists($logo2)) {
echo "<img src=".$logo2." alt=\"Logo\" style=\"border: none;\" />";
} else {
echo "<img src=".$logo." alt=\"Logo\" style=\"border: none;\" />";
} ?>
</a>
both images of $logo2 and $logo exists in the same directory, but the code only shows $logo (logo.png) I need pointers and thanks in advance
GÜNCEL:
$ _url değeridir
$this->data['_url'] = $this->config->get('config_url');
ve i <?php echo $_url;?>
olduğunu gösterecektir zaman mesela http://www.mysite.com
yukarıdaki kodu kullanarak only show logo.png