-1
I have a question about the Switch .
I want to put several options for a Switch and currently I have so and does not work:
if (isset($_POST['estado'])&& ($_POST['Distrito']))
{
switch($_POST['estado'] && $_POST['Distrito'])
{
case 'Indiferente'&&'Indiferente':
$sql = "select * from tb_detalhe_trabalhador inner join tb_trabalhador on tb_detalhe_trabalhador.id = tb_trabalhador.id inner join tb_equipamentos on tb_detalhe_trabalhador.id = tb_equipamentos.id ORDER BY tb_trabalhador.id asc LIMIT $inicio, $quantidade";
$qr = mysql_query($sql) or die(mysql_error());
break;
case 'Indiferente'&&'Aveiro':
$sql = "select * from tb_detalhe_trabalhador inner join tb_trabalhador on tb_detalhe_trabalhador.id = tb_trabalhador.id inner join tb_equipamentos on tb_detalhe_trabalhador.id = tb_equipamentos.id Where tb_trabalhador.Distrito = 'Aveiro' or 'AVEIRO' or 'aveiro' ORDER BY tb_trabalhador.id asc LIMIT $inicio, $quantidade";
$qr = mysql_query($sql) or die(mysql_error());
break;
gambiarra, essential part of php
– Marciano.Andrade