PHP - Send to another client id page when clicking on a cell

1

I have a list of clients each in a cell.

I want, when I click on the cell, to send to another page the id of the selected client, in a secure way. Without displaying the id in the link.

Generating the tables:

$marcador = '<img src="../imagens/traco.png" width="5px" height="13px"> ';
//Iniciando tabela
        echo '<table>';
        //Mostrando em uma tabela
        foreach ($clientes as $cliente) {
            //Linha da tabela
            echo '<tr>';
            //Celula da tabela
            //Nome do cliente, recebe cor diferente
            echo '<td><a href="meuendereco/outrapagina"><span class="nome">' . $cliente->getNome() . '</span><br>'
            . $cliente->getFantasia() . '<br>'
            . $marcador . 'Cód.: ' . $cliente->get_id() . '<br>'
            . $marcador . $cliente->getEnderco() . ', ' . $cliente->getNum() . '<br>'
            . $marcador . $cliente->getBairro() . ' - ' . $cliente->getCidade() . ', ' . $cliente->getUf() . '</a></td>';
        }

My CSS For my css I made a cell a link.

@charset "utf-8";
/* CSS Document */

/* CORPO DA PÁGINA */
body {
	color:#666;		   /* cor padrão para todas fontes */
	font-weight: bold; 	/* negrito */
}

/********************* TABELA **********************************/
/* linha da tabela*/
table, td {
	padding-left: 15px;
	padding-top: 3mm;				  /* distancia do topo */
	padding-bottom: 1.5mm;			 /* distancia da base*/
	border-collapse: collapse;		 /* Borda simples */
	border-bottom: 1px solid green;	/* Borda de baixo */
	border-bottom-color: #666;		 /* cor da borda de baixo */
	
}
/* espaço da celula */
td:hover{
	background: #C6E2FF;	/*cor de fundo da celula*/			
	cursor: pointer;		/*cursor na celular será uma mãozinha*/
}
/* link na célula */
td a{
	text-decoration:none;   /* texto não ficará sumblinhado na tabela*/
	display: block;		 /* link será na célula */
	height: 100%;		   /* link será em toda célula*/ 
	color:#666;			 /* a cor do texto será (cinza)*/			
}
/******************* FIM - TABELA ******************************/

/* cor do nome dos clientes*/
.nome {
	font-size: 18px;		/* tamanho da fonte */
	color:#6699CC;		  /* cor da fonte */
	font-weight: bold;	  /* fonte em negrito */
}
    
asked by anonymous 20.06.2015 / 15:59

1 answer

1

You can create a form in each cell and send each by POST o id of the client

echo '<td><form action="meuendereco/outrapagina" style="display:none;" method="post" name="post_' . $cliente->get_id() . '" >
        <input type="hidden" name="client_id" value="' . $cliente->get_id() . '">
    </form>
    <a href="#" onclick="document.post_' .  $cliente->get_id() . '.submit();">' . $cliente->getNome() . '</span><br>'
            . $cliente->getFantasia() . '<br>'
            . $marcador . 'Cód.: ' . $cliente->get_id() . '<br>'
            . $marcador . $cliente->getEnderco() . ', ' . $cliente->getNum() . '<br>'
            . $marcador . $cliente->getBairro() . ' - ' . $cliente->getCidade() . ', ' . $cliente->getUf() . '</a></td>';
    
20.06.2015 / 17:01