0

Script1 は CSS と html のデザインに基づいています (いくつかのテクスチャ効果があります) PHP フォーム アクション スクリプトを html/css フォームにセットアップしようとしましたが、ホームページに更新され続けます..成功した場合、スクリプトに従って更新されます。 php ですが、成功していません。

ただし、script2、CSS は使用しません。非常に基本的な html ですが、正常に動作しています。しかし、私のウェブサイト全体のデザインにはCSS効果があるので、フォームにもCSSの機能が必要です。

誰かがscript1で私を助けてくれませんか? それが不可能な場合は、以下のフォームのアクション スクリプトを提案してください。現在、action.php スクリプトはありません。オンラインでいくつか試しましたが、残念ながら成功しませんでした。

CSS フォーム スクリプト:

<div class="row add-bottom-main">
    <form name="myform" id="contactForm" action="" method="post">  

        <article class="span6">
            <textarea  id="msg" rows="3" cols="40" name="message" placeholder="Message">Message</textarea>
        </article>

        <article class="span6">
            <input size="100" type="text" name="name" id="name" placeholder="Name">
            <input type="text"  size="30" id="email" name="email" placeholder="email">
            <button type="submit" name="submit" id="submit" class="btn btn-renova-alt add-top-half">Send Message</button>
        </article>

    </form>
</div>

スクリプト 1

<div class="row add-bottom-main">
<?php 
$action=$_REQUEST['action']; 
if ($action=="")    /* display the contact form */ 
{ 
?> 
    <form name="myform" id="contactForm" action="" enctype="multipart/form-data" method="post">  

        <article class="span6">
            <textarea  id="msg" rows="3" cols="40" name="message" placeholder="Message">Message</textarea>
        </article>

        <article class="span6">
            <input size="100" type="text" name="name" id="name" placeholder="Name">
            <input type="text"  size="30" id="email" name="email" placeholder="email">
            <button type="submit" name="submit" id="submit" class="btn btn-renova-alt add-top-half">Send Message</button>
        </article>

    </form>
<?php 
}  
else                /* send the submitted data */ 
{ 
    $name=$_REQUEST['name']; 
    $email=$_REQUEST['email']; 
    $message=$_REQUEST['message']; 
    if (($name=="")||($email=="")||($message=="")) 
    { 
        echo "All fields are required, please fill again."; 
    }
    else
    {         
        $from="From: $name<$email>\r\nReturn-path: $email"; 
        $subject="Message sent using your contact form"; 
        mail("niranjan.thampu@gmail.com", $subject, $message, $from); 
        echo '<META HTTP-EQUIV="Refresh" Content="0; URL=thankyou.php">';    
        exit;
    } 
}   
?>                         
</div>

スクリプト 2

<div class="row add-bottom-main">
<?php 
$action=$_REQUEST['action']; 
if ($action=="")    /* display the contact form */ 
{ 
?> 
    <form name="myform" id="contactForm" action="" method="POST" enctype="multipart/form-data"> 
    <input type="hidden" name="action" value="submit"> 
    Your name:<br> 
    <input name="name" type="text" value="" size="30"/><br> 
    Your email:<br> 
    <input name="email" type="text" value="" size="30"/><br> 
    Your message:<br> 
    <textarea name="message" rows="7" cols="30"></textarea><br> 
    <input type="submit" value="Send email"/> 
    </form> 
<?php 
}  
else                /* send the submitted data */ 
{ 
    $name=$_REQUEST['name']; 
    $email=$_REQUEST['email']; 
    $message=$_REQUEST['message']; 
    if (($name=="")||($email=="")||($message=="")) 
    { 
        echo "All fields are required, please fill again."; 
    } 
    else
    {         
        $from="From: $name<$email>\r\nReturn-path: $email"; 
        $subject="Message sent using your contact form"; 
        mail("niranjan.thampu@capital-placement.com", $subject, $message, $from); 
        echo '<META HTTP-EQUIV="Refresh" Content="0; URL=thankyou.php">';    
        exit;
    } 
}   
?>                    
</div>
4

1 に答える 1