C
|
Chris Whitehead 7/3/2024 |
If "nome" is the value in the field to start with, maybe try. $value = "<a href='" . $link . "'>" . $value . "</a>"; |
![]() |
francesco author 7/4/2024 |
I used a query string approach, which means adding key-value pairs to the URL of the link. These can then be extracted on the destination page using PHP with $nomeop = $_GET['nome']; |
C
|
Chris Whitehead 7/4/2024 |
Are you wanting to send the filter in the link? Using "f" appears to work on mine as I have the filters on the page. $opid = DB::DBLookup( "SELECT ID FROM operatore WHERE nome='$nomeop'" ); |