Carga e Utilitário
Agrícola
OTR
Florestal
Industrial
Invalid argument supplied for foreach()
E:\home\fmpneuspr\Web\produtos.php(63)
51 <div class="row"> 52 <div class="col-md-5"> 53 <span class="cor1 h2 fonte-bold text-uppercase">Linha </span> <span class="fonte-bold cor h2"> / 54 <i class="cor2 h4 fonte-normal text-uppercase"><?= $linha_['nome'] ?></i></span> 55 </div> 56 <div class="col-md-1 offset-md-3 text-md-right pr-0 d-none d-sm-block"> 57 <h3 class="m-t-10">Segmento: </h3> 58 </div> 59 <div class="col-md-3"> 60 <div class="form-group mt-3 mt-md-0 m-l-5"> 61 <select class="form-control custom-select fonte-bold text-uppercase" id="linhas" onchange="mudaUrl(this.value)"> 62 <?php 63 foreach ($linhas_filtro as $filtro) { 64 $selected = $filtro['idlinha'] == $_GET['id'] ? 'selected' : ''; 65 ?> 66 <option <?= $selected ?> value="<?= $_GET['categoria'] ?>/<?= $filtro['idlinha'] ?>/<?= Util::removerAcentos($filtro['nome']) ?>"><?= $filtro['nome'] ?></option> 67 <?php 68 } 69 ?> 70 </select> 71 </div> 72 </div> 73 </div> 74 </div> 75 <hr class="mt-1 mb-4">
167 Utf8::encode($html); 168 echo $html; 169 exit; 170 } 171 172 require_once($require_file); 173 exit; 174 175 } 176 177 }
47 '/(?P<categoria>\S+)/(?P<id>\d+)/(?P<nome_linha>\S+)' => 'produtos.php', 48 '/(?P<categoria>\S+)' => 'produtos.php', 49 ); 50 51 $request_manager = new RequestManager(); 52 $request_manager->run($rotas);