0

私はどこでも見ましたが、同じようなものは見つかりませんでした。

> I need this Slide toggle function  to work for various hidden divs
> (that contain images and text) that belong to each button,if it's
> possible the hidden divs slide from the right or even from bottom to
> up.Also if it's possible to add hoover on buttons to let the user know that
they are buttons to click on them, 

さらに説明が必要な場合はお知らせください。助けていただければ幸いです。

トグルを右からスライド - Js フィドル

アイデアの説明は次のとおりです。

ここに画像の説明を入力

4

1 に答える 1

1

すべてのフィールドを必須にしたい場合は、 または のいずれ$name$emailが空の場合にエラーをスローする必要があります。したがって、OR を使用します。また、アンチスパムが 4 でない場合は、エラーをスローするだけで、$_POST['submit']既にチェック済みであるため、チェックする必要はありません。

  if ($_POST['submit']) {
        if ($name != '' OR $email != '') {
                if ($human == '4') {                 
                        if (mail ($to, $subject, $body, $from)) { 
                                echo '<p>Your message has been sent!</p>';
                        } else { 
                                echo '<p>Something went wrong, go back and try again!</p>'; 
                        }
                } else {
                        echo '<p>You answered the anti-spam question incorrectly!</p>';
                }
        } else {
            echo '<p>You need to fill in all required fields!!</p>';
        }
}
于 2013-10-08T23:20:48.473 に答える