Jump to content

Recommended Posts

Posted (edited)

Lucrez la un site cu login/register etc, dar am o mica problema. Cum fac ca, atunci cand intru pe cont -> profil sa imi afiseze daca acel user este admin sau nu, am incercat cu urmatorul cod dar imi afiseaza accesele de la toate conturile :))

 <?php
include "../config.php";
$res = $conn->query("select * from utilizatori");
while ($row = $res->fetch_assoc()) {
?>

<td><?php echo $row['acces']; ?></td>

<?php	
	
if($acces > 0) {
	echo 'esti admin';
	} else {
	echo 'nu esti admin';
}
}
?>

Cum fac ca sa imi afiseze accesul de la contul respectiv  ?

Edited by Traficantu'
  • gaby changed the title to Afisare acces user in PHP?

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.