ciao,
c'è un sistema per cui una pagina si può visualizzare solo passando per un determinato link?? e invece nn si visualizza se cambi l'url??
grezie ciao
ciao,
c'è un sistema per cui una pagina si può visualizzare solo passando per un determinato link?? e invece nn si visualizza se cambi l'url??
grezie ciao
http://codecanyon.net/category/all?ref=Manuelandro
And I bet she told a million people that she'd stay in touch, Well all the little promises they dont mean much,When theres
memories to be made
La pagina deve essere scritta in PHP.
Poi puoi fare un controllo del referer; ad esempio: se l'utente proviene dalla pagina x.y allora mostri l'output.
$_SERVER["HTTP_REFERER"];
puoi farmi un esempio?? non mi è molto chiaro![]()
http://codecanyon.net/category/all?ref=Manuelandro
And I bet she told a million people that she'd stay in touch, Well all the little promises they dont mean much,When theres
memories to be made
Oppure:Codice PHP:
<?
if ( $_SERVER["HTTP_REFERER"] == "..." )
{
include "pagina.htm";
}
else
{
echo "Errore!";
}
?>
Codice PHP:
<?
if ( $_SERVER["HTTP_REFERER"] == "..." )
{
echo "Accesso consentito!".
}
else
{
echo "Errore!";
}
?>
grazie ora provo..![]()
http://codecanyon.net/category/all?ref=Manuelandro
And I bet she told a million people that she'd stay in touch, Well all the little promises they dont mean much,When theres
memories to be made