Hola Prueba así
Código PHP:
<?php
// Programamos variables
if(isset($_POST['album'])){
$album_name = $_POST['album'];
// Insertamos el nombre de los albums en la base de datos
if(empty($_POST['album'])){
echo "No se ha creado el album en la base de datos";
}else{
//Conectamos a la base de datos
$conexion = mysql_connect("localhost","root","pass");
// seleccionamos la tabla
mysql_select_db("imagesend", $conexion);
$sql = "INSERT INTO albums (album_name) VALUES ('$album_name')";
$result = mysql_query($sql);
echo "El album se ha insertado en la base de datos";
}
}//else{ //opcional A
?>
<html>
<body>
<form method="post">
<input type="text" name="album">
<input type="submit" value="Enviar">
</form>
<?php //} //fin A ?>
</body>
</html>