Da error en el dreamweaver?
es que php debe correr en un server como apache :)
y si aparte el switch esta mal
http://php.net/manual/es/control-structures.switch.php
aqhi dice como usar el switch de php
y entonces quedaría (sujeto a fallos de conpetos) así:
Código PHP:
Ver original<?php
$filtro = '';
switch ($filtro){
case 1:
$filtro.=" AND B.SERV_ENLACE LIKE '%".strtoupper($_POST[''])."'"; break;
case 2:
$filtro.=" AND B.SERV_ORDEN LIKE '%".strtoupper($_POST[''])."'"; break;
case 3:
$filtro.=" AND E.PROY_NOMBRE LIKE '%".strtoupper($_POST[''])."'"; break;
}
$filtro.=" ORDER BY SLOT_PORT_STM1UMG, SLOT_EQP, PORT_EQP";
?>