Arama butonu
Bu konudaki kullanıcılar: 1 misafir
6
Cevap
483
Tıklama
0
Öne Çıkarma
İletişim Formunu Düzenleyemiyorum
K
10 yıl
Yarbay
Konu Sahibi

Arkadaşlar herkese merhaba.Hazır bir html sitesini düzenliyorum. yanlız sayfaya gömülü olan iletişim formunu uyarlamayı bir türlü yapamadım. baya bi araştırdım ama gene olmadı :( contact.php dosyasında mail yazan bölümne mailimi yazdım. ama contact.html dosyasında send butonunda link yok :( mantık olarak o butonu php dosyasına linkledim. ama gene olmadı. herkese şimdiden teşekkür ederim. iyi forumlar.


Sayfa Burda

Bu Contact.php dosyasının içeriği


<?php  

/* ========================== Define variables ========================== */

#Your e-mail address
define("__TO__", "info@hayatkebap.com");

#Message subject
define("__SUBJECT__", "");

#Success message
define('__SUCCESS_MESSAGE__', "Mesajınız Gönderildi.");

#Error message
define('__ERROR_MESSAGE__', "Hata Algılandı. Lütfen Kontrol Edip, Tekrar Deneyimiz.");

#Messege when one or more fields are empty
define('__MESSAGE_EMPTY_FILDS__', "Please fill out all fields");

/* ======================== End Define variables ======================== */

//Send mail function
function send_mail($to,$subject,$message,$headers){
if(@mail($to,$subject,$message,$headers)){
echo json_encode(array('info' => 'success', 'msg' => __SUCCESS_MESSAGE__));
} else {
echo json_encode(array('info' => 'error', 'msg' => __ERROR_MESSAGE__));
}
}

//Check e-mail validation
function check_email($email){
if(!@eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)){
return false;
} else {
return true;
}
}

//Get post data
if(isset($_POST['name']) and isset($_POST['mail']) and isset($_POST['comment'])){
$name = $_POST['name'];
$mail = $_POST['mail'];
$website = $_POST['website'];
$comment = $_POST['comment'];

if($name == '') {
echo json_encode(array('info' => 'error', 'msg' => "Please enter your name."));
exit();
} else if($mail == '' or check_email($mail) == false){
echo json_encode(array('info' => 'error', 'msg' => "Please enter valid e-mail."));
exit();
} else if($comment == ''){
echo json_encode(array('info' => 'error', 'msg' => "Please enter your message."));
exit();
} else {
//Send Mail
$to = __TO__;
$subject = __SUBJECT__ . ' ' . $name;
$message = '
<html>
<head>
<title>Mail from '. $name .'</title>
</head>
<body>
<table style="width: 500px; font-family: arial; font-size: 14px;" border="1">
<tr style="height: 32px;">
<th align="right" style="width:150px; padding-right:5px;">Name:</th>
<td align="left" style="padding-left:5px; line-height: 20px;">'. $name .'</td>
</tr>
<tr style="height: 32px;">
<th align="right" style="width:150px; padding-right:5px;">E-mail:</th>
<td align="left" style="padding-left:5px; line-height: 20px;">'. $mail .'</td>
</tr>
<tr style="height: 32px;">
<th align="right" style="width:150px; padding-right:5px;">subject:</th>
<td align="left" style="padding-left:5px; line-height: 20px;">'. $subject .'</td>
</tr>
<tr style="height: 32px;">
<th align="right" style="width:150px; padding-right:5px;">Comment:</th>
<td align="left" style="padding-left:5px; line-height: 20px;">'. $comment .'</td>
</tr>
</table>
</body>
</html>
';

$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= 'From: ' . $mail . "\r\n";

send_mail($to,$subject,$message,$headers);
}
} else {
echo json_encode(array('info' => 'error', 'msg' => __MESSAGE_EMPTY_FILDS__));
}
?>



Bu contact.html dosyasının içeriği

<!doctype html> 


<html lang="en" class="no-js">
<head>
<title>Convertible</title>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,700,600,300' rel='stylesheet' type='text/css'>

<link rel="stylesheet" type="text/css" href="css/bootstrap.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/responsive.css" media="screen">


</head>
<body>

<!-- Container -->
<div id="container" class="boxed">
<!-- Header
================================================== -->
<header class="clearfix">
<!-- Static navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="top-line">
<div class="container">
<p>
<span><i class="fa fa-phone"></i>1234 - 5678 - 9012</span>
<span><i class="fa fa-envelope-o"></i>support@convertible.com</span>
</p>
<ul class="social-icons">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-facebook"></i></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-twitter"></i></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-rss"></i></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
</div>
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/logo.png"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">

<li class="drop"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=index.html" data-href="index.html">Home</a>
<ul class="drop-down">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=index.html" data-href="index.html">Home Default</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=home-shop.html" data-href="home-shop.html">Home Shop</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=home-portfolio.html" data-href="home-portfolio.html">Home Portfolio</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=home-blog.html" data-href="home-blog.html">Home blog</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=single-page.html" data-href="single-page.html">Single Page</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=home-boxed.html" data-href="home-boxed.html">Home Boxed</a></li>
</ul>
</li>
<li class="drop"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=index.html" data-href="index.html">Sliders</a>
<ul class="drop-down">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=index.html" data-href="index.html">Revolution slider</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=flexslider.html" data-href="flexslider.html">Flexslider</a></li>
</ul>
</li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=about.html" data-href="about.html">About Us</a></li>
<li class="drop"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-right-sidebar.html" data-href="blog-right-sidebar.html">Blog</a>
<ul class="drop-down">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-one-col.html" data-href="blog-one-col.html">Blog 1col</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-two-col.html" data-href="blog-two-col.html">Blog 2col</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-right-sidebar.html" data-href="blog-right-sidebar.html">Blog right sidebar</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-left-sidebar.html" data-href="blog-left-sidebar.html">Blog left sidebar</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=blog-nosidebar.html" data-href="blog-nosidebar.html">Blog no sidebar</a></li>
</ul>
</li>
<li class="drop"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=portfolio-4col.html" data-href="portfolio-4col.html">Portfolio</a>
<ul class="drop-down">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=portfolio-2col.html" data-href="portfolio-2col.html">Portfolio 2col</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=portfolio-3col.html" data-href="portfolio-3col.html">Portfolio 3col</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=portfolio-4col.html" data-href="portfolio-4col.html">Portfolio 4col</a></li>
</ul>
</li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=shop.html" data-href="shop.html">Shop</a></li>
<li class="drop"><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">Pages</a>
<ul class="drop-down">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=single-post.html" data-href="single-post.html">Single Post</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=single-project.html" data-href="single-project.html">Single Project</a></li>
</ul>
</li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=contact.html" data-href="contact.html">Contact Us</a></li>

</ul>
</div>
</div>
</div>
</header>
<!-- End Header -->

<!-- content
================================================== -->
<div id="content">

<!-- Page Banner -->
<div class="page-banner">
<div class="container">
<h2>Contact Us</h2>
<ul class="page-tree">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">Home</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">Contact</a></li>
</ul>
</div>
</div>

<!-- Map box -->
<div class="map">

</div>

<!-- contact box -->
<div class="contact-box">
<div class="container">
<div class="row">

<div class="col-md-3">
<div class="contact-information">
<h3>Contact info</h3>
<ul class="contact-information-list">
<li><span><i class="fa fa-home"></i>lorem ipsum street</span></li>
<li><span><i class="fa fa-phone"></i>9930 1234 5679</span></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-envelope"></i>info@orbit7.com</a></li>
</ul>
</div>
</div>

<div class="col-md-3">
<div class="contact-information">
<h3>Working hours</h3>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit duis set odio sit amet nibh vulputate cursus </p>
<p class="work-time"><span>Mon - Fri</span> : 10 AM to 5 PM</p>
<p class="work-time"><span>Sat - Sun</span> : 10 AM to 2 PM</p>
</div>
</div>

<div class="col-md-6">
<h3>Send us a message</h3>
<form id="contact-form" class="contact-work-form2">

<div class="text-input">
<div class="float-input">
<input name="name" id="name2" type="text" placeholder="name">
<span><i class="fa fa-user"></i></span>
</div>

<div class="float-input2">
<input name="mail" id="mail2" type="text" placeholder="email">
<span><i class="fa fa-envelope"></i></span>
</div>
</div>

<div class="textarea-input">
<textarea name="comment" id="comment2" placeholder="message"></textarea>
<span><i class="fa fa-comment"></i></span>
</div>

<div class="msg2 message"></div>
<input type="submit" name="mailing-submit" class="submit_contact main-form" value="Send Message">

</form>
</div>

</div>
</div>
</div>

</div>
<!-- End content -->


<!-- footer
================================================== -->
<footer>
<div class="up-footer">
<div class="container">
<div class="row">

<div class="col-md-3">
<div class="widget footer-widgets text-widget">
<img alt="" src="images/logo.png">
<p>This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem</p>
</div>
<div class="widget footer-widgets twitter-widget">
<h4>Recent Tweets</h4>
<ul class="tweets">
<li>
<p><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">@premiumlayers</a> Thanks for the head up! :) <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">http://support.envato.com</a> was very helpful</p>
<span>3 days ago</span>
</li>
<li>
<p><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">@envato</a> <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">http://support.envato.com</a> </p>
<span>4 days ago</span>
</li>
</ul>
</div>
</div>

<div class="col-md-3">
<div class="widget footer-widgets flickr-widget">
<h4>Flickr Gallery</h4>
<ul class="flickr-list">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr1.png"></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr2.png"></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr3.png"></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr4.png"></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr5.png"></a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><img alt="" src="images/flickr6.png"></a></li>
</ul>
</div>
<div class="widget footer-widgets popular-widget">
<h4>Popular Posts</h4>
<ul class="pop-post">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-pencil-square-o"></i> New Search Platform Update</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-pencil-square-o"></i> Envato's Most Wanted - $5,000 for Ghost Themes</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-pencil-square-o"></i> Update: WordPress Theme Submission Requirements</a></li>
</ul>
</div>
</div>

<div class="col-md-3">
<div class="widget footer-widgets tag-widget">
<h4>Tags</h4>
<ul class="tag-widget-list">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">web design</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">coding</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">wordpress</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">woo commerce</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">php</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#">photography</a></li>
</ul>
</div>
<div class="widget footer-widgets message-widget">
<h4>Send Message</h4>
<form id="footer-contact" class="contact-work-form">
<input type="text" name="name" id="name" placeholder="Name"/>
<input type="text" name="mail" id="mail" placeholder="Email"/>
<textarea name="comment" id="comment" placeholder="Message"></textarea>
<button type="submit" name="contact-submit" class="submit_contact">
<i class="fa fa-envelope"></i> Send
</button>
<div class="msg"></div>
</form>
</div>
</div>

<div class="col-md-3">
<div class="widget footer-widgets info-widget">
<h4>Contact Us</h4>
<ul class="contact-list">
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-phone"></i>9930 1234 5679</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-envelope"></i> contact@yourdomain.com</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"><i class="fa fa-home"></i> street address example</a></li>
</ul>
</div>
<div class="widget footer-widgets work-widget">
<h4>Working Hours</h4>
<p>This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum </p>
<p class="work-time"><span>Mon - Fri</span> : 10 AM to 5 PM</p>
<p class="work-time"><span>Sat - Sun</span> : 10 AM to 2 PM</p>
</div>
</div>

</div>
</div>
</div>

<div class="footer-line">
<div class="container">
<p>© 2013 Convertible, All Rights Reserved</p>
<a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=98544576&url=#" data-href="#"></a>
</div>
</div>

</footer>
<!-- End footer -->
</div>
<!-- End Container -->

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.migrate.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/gmap3.min.js"></script>
<script type="text/javascript" src="js/retina-1.1.0.min.js"></script>
<script type="text/javascript" src="js/plugins-scroll.js"></script>
<script type="text/javascript" src="js/script.js"></script>

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

</body>
</html>



K
10 yıl
Yarbay
Konu Sahibi

Yokmu yardim edecek kimse?



< Bu ileti mobil sürüm kullanılarak atıldı >

K
10 yıl
Yarbay
Konu Sahibi

Arkadaslar ne olur yardim edin.



< Bu ileti mobil sürüm kullanılarak atıldı >
Bu mesaja 1 cevap geldi.
S
10 yıl
Çavuş

gördüğüm kadarı ile formda action ve method yok.

<form action="Contact.php" method="POST">


Bu mesaja 1 cevap geldi.
K
10 yıl
Yarbay
Konu Sahibi

quote:

Orijinalden alıntı: sinanaydin

gördüğüm kadarı ile formda action ve method yok.

<form action="Contact.php" method="POST">

Yardimin icin sagol. Bu kodu contact.html dosyasinda iletisim formunun baslangicina yerlestiricem dimi?



< Bu ileti mobil sürüm kullanılarak atıldı >
Bu mesaja 1 cevap geldi.
S
10 yıl
Çavuş

<form id="contact-form" class="contact-work-form2"> yerine <form action="contact.php" id="contact-form" class="contact-work-form2" method="post">


Bu mesaja 1 cevap geldi.
K
10 yıl
Yarbay
Konu Sahibi

quote:

Orijinalden alıntı: sinanaydin

<form id="contact-form" class="contact-work-form2"> yerine <form action="contact.php" id="contact-form" class="contact-work-form2" method="post">

yardımın için çok teşekkürler. ama malesef beceremedim bişey dikkatimi çekti. contact.html dosyasında send butonu var ya, ona herhangi bir link aktif değil. orda bi sorun olabilirim. bide contact.php ve contact.html dosyaşarını buraya yükledim. indirip bakarsan sevinirim. tekrarda teşekkür ederim.http://www.speedyshare.com/aZwPb/Desktop.exe





< Bu mesaj bu kişi tarafından değiştirildi kmlhyt -- 25 Ekim 2014; 21:56:33 >

DH Mobil uygulaması ile devam edin. Mobil tarayıcınız ile mümkün olanların yanı sıra, birçok yeni ve faydalı özelliğe erişin. Gizle ve güncelleme çıkana kadar tekrar gösterme.