JQuery gibi (show / hide) div öğeleri işlemek PHP miyim?

0 Cevap php

Ben bir form yapıyorum ve bir kullanıcı hits gönderdiğinizde, i formu gizlemek ve "filan teşekkür ederim" diyen bir bölümünü göstermek istiyorum

PHP / PEAR Posta Factory kullanıyorum:

$mailObj =& Mail::factory('mail');

$bool = $mailObj->send($recipient, $headers, $body);

if($bool)
    echo "Thank you for your submission.";
else
    echo "There was a problem processing your request.";

$body = ""; // clear the body

0 Cevap