Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/symphony-solusi.co.id/public_html/application/views/ajax/ |
Upload File : |
<?php $change_this_slide = $_POST['change_this_slide']; $id = $_POST['id']; $data_output = ''; $projects = $this->db->select('*')->from('products')->where('id_products',$id)->where('product_status',1)->order_by('priority','ASC')->get()->result(); ?> <div data-is-slide="<?=$change_this_slide?>" class="flexslider flexslider_hidden product_main_image_img"> <ul class="slides slides_top"> <?php foreach ($projects as $project) : ?> <?php if (empty($project->image1) && empty($project->image2) && empty($project->image3) && empty($project->image4) && empty($project->image5) && empty($project->image6) ): ?> <li> <img style="" src="<?=base_url('uploads/nonavailable.jpg')?>"> </li> <?php endif ?> <?php if(!empty($project->image1)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image1)?>"> </li> <?php endif ?> <?php if(!empty($project->image2)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image2)?>"> </li> <?php endif ?> <?php if(!empty($project->image3)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image3)?>"> </li> <?php endif ?> <?php if(!empty($project->image4)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image4)?>"> </li> <?php endif ?> <?php if(!empty($project->image5)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image5)?>"> </li> <?php endif ?> <?php if(!empty($project->image6)) : ?> <li> <img style="" src="<?=base_url('uploads/product/'.$project->image6)?>"> </li> <?php endif ?> <?php endforeach ?> </ul> </div>