Ciao a tutti. inserisco lo script e spiego:
<!----------------------Cod x registrazione--------------------->
<?php
include('connect.php');

if(isset($_POST['register'])) {
$username = isset($_POST['username']) ? clear($_POST['username']) : false;
$password = isset($_POST['password']) ? clear($_POST['password']) : false;
$email = isset($_POST['email']) ? clear($_POST['email']) : false;
$mestiere = isset($_POST['mestiere']) ? clear($_POST['mestiere']) : false;
if(empty($username) || empty($password) || empty($email)) {
echo 'Riempi tutti i campi.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(strlen($username) > 16) {
echo 'Username troppo lungo. Massimo 16 caratteri.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(strlen($password) < 6 || strlen($password) > 20) {
echo 'Lunghezza della password non valida. Minimo 6 caratteri e massimo 20.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(!filter_var($email, FILTER_VALIDATE_EMAIL)) {
echo 'Indirizzo email non valido.';
} elseif(strlen($email) > 60) {
echo 'Lunghezza dell\'indirizzo email non valida. Massimo 60 caratteri.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(strlen($mestiere) > 25) {
echo 'mestiere troppo lungo. Massimo 16 caratteri.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(mysql_num_rows(mysql_query("SELECT * FROM users WHERE username LIKE '$username'")) > 0) {
echo 'Username già in uso. Sei pregato di sceglierne un altro.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} elseif(mysql_num_rows(mysql_query("SELECT * FROM users WHERE email LIKE '$email'")) > 0) {
echo 'Indirizzo email già in uso. Sei pregato di sceglierne un altro.<br /><br /><a href="javascript:history.back();">Indietro</a>';
} else {
$password = md5($password);
$ip = $_SERVER['REMOTE_ADDR'];
if(mysql_query("INSERT INTO users (username, password, email,mestiere, reg_ip, last_ip, reg_date) VALUES ('$username','$password','$email','$mestiere','$ip ','$ip',UNIX_TIMESTAMP())")) {
header('location:reg.php');
} else {
echo 'Errore nella query: '.mysql_error();
}
}

} else {
?>
<html>
<head>
<title>andrew_des</title>
<link href= "css/style.css" rel= "stylesheet" type= "text/css">
<meta charset="utf-8">
</head>
<body>
<div class="wrap_all">
<div class="banner"><?php include('template/banner.php')?></div>
<div class="content">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<label><h2>Nome: <input type="text" name="nome" required maxlength="16" /></label></h2><br />
<label><h2>Cognome: <input type="text" name="cognome" required maxlength="16" /></label></h2><br />
<label><h2>Username: <input type="text" name="username" required maxlength="16" /></label></h2><br />
<label><h2>Password: <input type="password" name="password" required maxlength="20" /></label></h2><br />
<label><h2>Email: <input type="email" name="email" required maxlength="60" /></label></h2><br /><br />
<label><h2>Mestiere: <input type="mestierel" name="mestiere" required maxlength="60" /></label></h2><br /><br />
<input type="submit" name="register" value="Registrati" />
</form>
</div>
<div class="footer"><?php include('template/footer.php')?></div>
</div>
</body>
<?php
}
?>

<!------------------------cod Menù a tendina-------------------------->

<html>
<head>
<title>andrew_des</title>
<link href= "css/style.css" rel= "stylesheet" type= "text/css">
<meta charset="utf-8">
</head>
<body>
<div class="wrap_all">
<div class="banner"><table_logout>
<tr>
<td><form action="logout.php" method="POST">
<input type="submit" name="invio" value="Esci">
</form></td>
</tr>
</table_logout><?php include('template/banner.php')?>
</div>
<div class="content">

<h4> Benvenuto in CERCA Lavoro<h4>
<!-----------------------------------------------------------------MENU A TENDINA------------------------------------------------>
<FORM ACTION="vetraio.php" METHOD="post">
Selezionare la categoria di interesse:<BR>
<SELECT NAME="lavoro">
<OPTION>Idraulico
<OPTION>Elettricista
<OPTION>Muratore
<OPTION>Vetraio
<OPTION><a href="falegname.php">Falegname</a>
</SELECT>
<INPUT TYPE="submit" VALUE=" Invia "/>
</FORM>

<!-----------------------------------------------------------------MENU A TENDINA------------------------------------------------>
<form action="index.php" method="POST">
<input type="submit" name="invio" value="Back" >
</form>


</div>
<div class="footer"><?php include('template/footer.php')?></div>
</div>
</body>
</html>

Io voglio che le categorie nel menù a tendina siano quelle del db(inserite in fase di registrazione) e che quando io seleziono es. muratore, venga prelevato dalla mia tabella tutte le persone appartenenti a quella categoria. Spero che il concetto sia chiaro e che io abbia saputo esprimerlo bene.Help me