0

フォームと同じ行にエコー メッセージを表示するにはどうすればよいですか?

ライブバージョン

<form name="form1" method="post" action="">Correo: <input type="text" name="mail"><input type="submit" name="Suscribir" value="Suscribir"></form>
<?php
$email = $_POST['mail'];
//the data
$data = "$email\n";
//open the file and choose the mode
$fh = fopen("users.txt", "a");
fwrite($fh, $data);
//close the file
fclose($fh);

if (count($_POST)>0) echo "Suscripcion dado de alta"; 

?>

ありがとうございました

4

1 に答える 1

1

フォームに cssdisplay:inline属性を追加するだけです:

<form style="display:inline-block;">

またはあなたのphpをあなたの<form>

于 2013-03-08T11:54:40.960 に答える