I'm doing it in the following way
but in the bd it keeps me "array" and not the fix, can you help me please.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="getmapa.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<?php include("conexion.php");
$link=conectar();
?>
<meta charset="utf-8">
<title>Nuevo viaje</title>
</head>
<body >
<?php include("head.php");?>
<div class="container contedor">
<div class="titulo-contenedor">Nuevo viaje</div>
<div class="container-int">
<form class="container-int" action="guardarviaje.php" method="post">
<select class="refor selectpicker" multiple name="paradas[]" multiple data-actions-box="true">
<?php
$consulta = "SELECT * FROM wck_parada ORDER BY id";
$ejecutar = mysql_query($consulta, $link);
while ($fila = mysql_fetch_array($ejecutar)) {
$id = $fila['id'];
$nombre = $fila['nombre'];
?>
<option type="checkbox" value="<?php echo utf8_encode($id); ?>" name="nombre"><?php echo utf8_encode($nombre); ?><br></option>
<?php }
mysql_close();
?>
</select>
</form>
$paradas=$_POST['paradas'];
mysql_query ("SET NAMES 'utf8'");
mysql_query("insert into wck_viaje(paradas)values('$paradas')", $link);
</div>
</div>
</body>
</html>