[eluser]minagabriel[/eluser]
what i did -> i create folder and call it images @ codeigniter/images
and place jpg image logo.jpg
and then i tried to call it from the following code
<a href="<?php echo base_url(); ?> ">
<img src=" <?php echo base_url();?> /images/logo.jpg" border="0"/>
</a>
<div> <?php echo anchor("welcome/about_us","about us");?>
<?php echo anchor("welcome/contact", "contact");?>
<?php echo base_url() . "welcome/contact" ; ?>
<?php
echo form_open("welcome/search");
$data = array(
"name" => "term",
"id" => "term",
"maxlength" => "64",
"size" => 30
);
echo form_input($data);
echo form_submit("submit","search");
echo form_close();
?>
</div>
nothing happened