Hello,
I do not know much about php and beg you for help
- Into my formulare I needed to write code for greasing form after clicking Send a.
- If this goes so prevent the repetitive clicking on the send behind use php script.
Please help!!! I thank everyone in advance for your help.
Script:
[sup]
Title:<span class="error" style="position:relative; top:2px;"><big> * </big></span>
<br>
<input type="text" name="title" size="5" value="<?php echo $title;?>">
<span class="error"><?php echo $titleErr;?></span><br><span id="example"> / Mr, Ms, ... / </span>
<br>
Name:<span class="error" style="position:relative; top:2px;"><big> * </big></span>
<br>
<input type="text" name="name" size="45" value="<?php echo $name;?>">
<span class="error"><?php echo $nameErr;?></span><br><span id="example"> / First Name and Last Name / </span>
<br>
E-mail:<span class="error" style="position:relative; top:2px;"><big> * </big></span>
<br>
<input type="text" name="email" size="50" value="<?php echo $email;?>">
<span class="error"><?php echo $emailErr;?></span><br><span id="example"> / Write in good format! / </span>
<br><br>
Comment:<span class="error" style="position:relative; top:2px;"><big> * </big></span>
<br>
<textarea name="comment" rows="6" cols="70"> <?php echo $comment;?></textarea>
<span class="error"><?php echo $commentErr;?></span>
<br>
<p class="navod"> Turn the picture into the correct position ! </p>
<div id = "rocaptcha_placeholder" ></div>
<script type = "text/javascript" src = "http://rocaptcha.com/api/js/?key=...My key...." ></script>
<script type = "text/javascript" >
RoCaptcha . init ( "rocaptcha_placeholder" );
</script>
<br>
<input type="submit" name="submit" value="Submit" id="send">
</fieldset>
[/sup]