- Home
- Categorie
- Coding e Sistemistica
- PHP
- pagina vuota. Perchè????
-
cosa significa???
-
manca un . di unione ta 2 variabili o stringhe nella riga 20
-
nella riga 20 del file index.php c'è:
[html]
echo '<a href="registrazione.php">Registrazione</a><br /><a href="login.php">Login</a><br />';
[/html]dove dovrei inserire il punto???
-
vedi la riga 19...
-
dalla riga 16 alla 21:
[html]
<?php
if(isset($_SESSION['login']))
echo '<a href="materie.php">Area privata</a><br />;
else
echo '<a href="registrazione.php">Registrazione</a><br /><a href="login.php">Login</a><br />';
?>
[/html]
-
<?php
if(isset($_SESSION['login']))
echo '<a href="materie.php">Area privata</a><br />';
else
echo '<a href="registrazione.php">Registrazione</a><br /><a href="login.php">Login</a><br />';
?>
-
scusa, ma cosa cambia tra i 2???
-
manca uno ' l'ho segnato in rosso...
-
ok...ho corretto la pagina e l' ho pubblicata
-
Mi fa il redirect all'index, tutto funzionante.....
-
ok...grazie 1000, ora provo io...
-
boh...a me no...mi fa entrare...cmq, se a te ti fa fare il redirect significa che funziona...
-
naturalmente ho cancellato i cookie prima di fare la prova
-
Da me funziona...
PS scirvi un messaggio solo o usa il tasto edita
-
come???
-
dove devo scrivere un solo messaggio???
-
Qui sul forum, scrivi 10 messaggi di fila ogni volta... come hai appena fatto adesso XD
-
quindi...arrivati alla fine, per proteggere una pagina devo inserire
questo codice:
[html]
<?php
// Includo la connessione al database
require('indirizzo_file_config.php');// Se non è stata definita la variabile manda l'utente alla homepage
if(!isset($_SESSION['login']))
{
header('Location: indirizzo_file_index.php');
exit;
}
?>
[/html]giusto???
-
si
-
Però qst mi da ancora pagina bianca...dove sbaglio???
orale_chimica.php
[html]
<?php
// Includo la connessione al database
require('ture70.netsons.org/config-clas.php');
// Se non stata definita la variabile manda l'utente alla homepage
if(!isset($_SESSION['login']))
{
header('Location: indirizzo index.php');
exit;
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8"></HEAD>
<BODY>
<center>
<img src="ture70.netsons.org/index/icone/fulmine.gif">
<img src="ture70.netsons.org/scritte/chimica.gif">
<img src="ture70.netsons.org/index/icone/fulmine.gif">
</center>
<br>
<center> <font color="yellow" size="24"> SETTEMBRE </font> </center>
<center> <table border="1" width="650" height="350">
<td width="15%"> <center> <font color="blue"> GIORNO </font> </center> </td>
<td width="15%"> <center> <font color="blue"> INTERROGATI </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 15 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 16 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 17 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 18 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 19 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 20 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 22 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 23 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 24 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 25 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 26 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 27 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 29 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
<tr>
<td width="15%"> <center> <font color="yellow"> 30 </font> </center> </td>
<td width="85%"> <center> <font color="yellow"> #### - #### </font> </center> </td>
</table> </center>
</BODY>
</HTML>
[/html]