Passaggio Variabile

di il
1 risposte

Passaggio Variabile

Ciao a tutti

Ho un problema con PHP per un passaggio di variabile.

Ho installato phpmyfaq su un piccolo server ubuntu con php 7.3. Vorrei fare in modo che un utente che entra nell'area intranet aziendale (con le sue credenziali) cliccando su un collegamento "FAQ" vada a puntare sul server dove si aprirà il sito con phpmyfaq ma che sia già loggato, senza dover inserire le credenziali. In grassetto sono le righe aggiunte da me

Ho inserito delle righe in basso ma non va, lo so che probabilmente mi direte di scrivere direttamente al programmatore di phpmyfaq però pensavo che siccome si trattasse comunque di php potevate aiutarmi anche Voi.

Grazie mille
?php


$controllo=$_GET['controllo'];


/**
* This is the main public frontend page of phpMyFAQ. It detects the browser's
* language, gets and sets all cookie, post and get informations and includes
* the templates we need and set all internal variables to the template
* variables. That's all.
*etc etc etc-.....


//
// Authenticate current user
//
if($controllo <> NULL)
{
//$faqusername =$_GET['name'];
//$faqpassword = $_GET['password'];
$faqusername =$_GET['user'];
$faqpassword = 'Privio200';//$_GET['password'];
}
else
{
$faqusername = PMF_Filter::filterInput(INPUT_POST, 'faqusername', FILTER_SANITIZE_STRING);
$faqpassword = PMF_Filter::filterInput(INPUT_POST, 'faqpassword', FILTER_SANITIZE_STRING);
}

//$faqusername = PMF_Filter::filterInput(INPUT_POST, 'faqusername', FILTER_SANITIZE_STRING);
//$faqpassword = PMF_Filter::filterInput(INPUT_POST, 'faqpassword', FILTER_SANITIZE_STRING);

etc etc etc ......

1 Risposte

Devi accedere o registrarti per scrivere nel forum
1 risposte