Jump to content

Recommended Posts

Posted

orea tora doulevei kanonika to mysql_real_escape_string i8ele telika thanks

 

gia na min anoigw kainourio topic 8a kanw kai ali mia erotisi edw exw ftiaxei mia contact form kai meso php exw valei na apostelete sto e-mail mou oti grafoun stin forma alla nomizw exw kanei kati la8os gt dn apostelete tpt st e-mail m

 

PHP:

<?php

 

$name = $_POST['name'];

$visitor_email = $_POST['email'];

$message = $_POST['message'];

 

 

 

$email_from = 'nick_171717@hotmail.com';

$email_subject = "New Form submission";

$email_body = "You have received a new message from the user $name.\n".

    "Here is the message:\n $message".

   

$to = "nick_171717@hotmail.com";

$headers = "From: $email_from \r\n";

$headers .= "Reply-To: $visitor_email \r\n";

 

mail($to,$email_subject,$email_body,$headers);

header('Location: index.php');

 

?>

 

html

 

<form name="cform" action="form-to-email.php" method="post" onsubmit="return validate()">

<h4>Φόρμα Επικοινωνίας</h4>

<p>Στείλτε μας τις απορίες και τα σχόλια σας

<br />

<font color="maroon">(Τα πεδία με * είναι υποχρεωτικά).</font>

</p>

 

<ol>

       

        <li>

        <label for="name"> <font color="maroon">*</font>Όνομα:</label>

        <input type="text" name="name" id="name" tabindex="1" />

        </li>

       

        <li>

        <label for="email"><font color="maroon">*</font>Email:</label>

        <input type="text" name="email" id="email" tabindex="2" />

        </li>

       

       

       

        <li>

        <label for="message"><font color="maroon">*</font>Mήνυμα:</label>

        <textarea name="message" id="message" tabindex="3"  rows="3" ></textarea>

        </li>

       

        <li id="send">

        <button type="submit" >Αποστολή</button>

        </li>

 

    </ol>

 

</form>

Posted

                        $my_email = 'nick_171717@hotmail.com';

                        

                        $headers = 'From: '.$visitor_email."\r\n".

                        'X-Mailer: PHP/' . phpversion();

                        

                        $subject = 'New Form submission';

                        

                        $recieved_message = "You have received a new message from the user $name.\n";
                        $recieved_message .= "Here is the message:\n $message";

                        

                        @mail($my_email, $subject, $recieved_message, $headers);

 

δοκιμασε τον παραπανω κωδικα.

Posted

to dokimasa kai den esteile kapoio e-mail

alla epeidi doulevw sto eclipse den xerw an to eclipse exei afti tin leitourgia oste na doulevei kai na stelnei kapoio e-mail

Posted

εαν προσπαθεις να στειλεις απο το pc σου, ισως να μην λειτουργει και να χρειαζεσαι live server για να δουλεψει.

Αλλιως μπορεις να χρησιμοποιησεις καποια open source email projects οπως PHPMailer, SwiftMaler(googlαρε)

Posted

gia na min anikso kainourio topic 8a rotiso edw

 

exw valei sto site afto edw to script to opoio provalei tin ip tou episkepti

 

<?php

if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) || isset($_SERVER['HTTP_VIA']))

{

echo "your ip is " .$_SERVER['HTTP_X_FORWARDED_FOR'];

}       

elseif(isset($_SERVER['HTTP_CLIENT_IP']))

{

echo "your ip is " .$_SERVER['HTTP_CLIENT_IP'];

}

else

{

echo "your ip is " .$_SERVER['REMOTE_ADDR'];

}

?>

 

afto provalei your ip is 127.0.0.1 (tin ip t localhost dld)

alla egw 8elw na provalei tin ip pou exw sto internet p,x 79.131.248.98

xerei kaneis pos ginete afto ?

Posted

οταν προσπαθεις σε localhost δεν γινεται να δεις την wan ip σου αλλα μονο την lan.

 

δοκιμασε παντως εδω : http://www.whatismyip.com/faq/automation.asp

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...