I want to add script files and css files to my php view page inside a module, I try to make like this
<base href="<?php echo $this->baseUrl(); ?>" />
<link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl('style/ui-lightness/jquery-ui-1.8.18.custom.css'); ?>"/>
and like this
<?php
$this->headScript()->appendFile('js/jquery-1.7.1.min.js');
echo $this->headScript();
?>
but both of them do not inlucde the files. I put my css and js files inside the helpers folder of view folder.