Jump to content

SunTzu

Members
  • Posts

    29
  • Joined

  • Last visited

About SunTzu

  • Birthday 04/01/1975

Profile Information

  • Location
    Athens

SunTzu's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. SunTzu

    mail() function

    I will try that ...Thank you.
  2. SunTzu

    mail() function

    Hi,Do you know how is this done with gmail ?I did use smtp.gmail.com as SMTP in php.ini but nothing happens.
  3. Actually i had the same problem and i tried to configure php.ini by setting SMTP = smtp.gmail.com and port 25 but nothing has happened.I did not use an SMTP server as i believed that i could use the gmail's server by configuring properly the php.ini. Am i in the right way or not ?
  4. Is it working if you try innerText?
  5. Good Morning to All,Can someone pls advise me if it is possible to have an array as an Ajax Response ?
  6. SunTzu

    Cannot send email

    Can i use Gmail as mail server ?
  7. SunTzu

    Cannot send email

    I think that my problem is about setting up an SMTP server in Apache.Any idea of how doing this ?
  8. SunTzu

    Cannot send email

    Thnx for your reply ..So, how can i set the mail() function on ? I have just modify SMTP parameter in the php.ini file. I am using gmail so i put SMTP = smtp.gmail.comAlthough, my ISP is this one http://www.tellas.gr/index.asp?gid=28〈=1What is most important here ... the ISP or Gmail ?
  9. SunTzu

    Cannot send email

    Hi,I am using the following simple codes for creating a form with a textarea <form method="post" action="sendmail.php"> Email: <input name="email" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /></form> and sending its contents to myaddress using the following php script <?php $email = $_REQUEST['email']; $message = $_REQUEST['message']; mail( "myaddress@something.com", "Feedback Form Results", $message, "From: $email" ); header( "Location: http://www.example.com/thankyou.html" );?> but it does not work ...Any help plsss ...
  10. strange .... when i put onmouseover="openmenu()" in the <a> element works fine ...
  11. Hi to All ,I have the following cell which is a hyperlink and i am trying to change its link using javascript ... <td class="menu" id="jobdesc" onmouseover="openmenu()"><a href="jobdescription.htm">Job Description</a></td> Here is the script: <script type="text/javascript">function openmenu() { document.getElementById("jobdesc").innerHTML = "<a href=\"why.htm\">Job Description</a>";}</script> But unfortunately the link seems to be inactive ... (file why.htm is there ) What can be wrong?thnx in advance.
  12. SunTzu

    Drop Down Lists

    Thanks yoshida ..I will try to use Javascript to reload the page with the parameter dept like self.location = xx.php?dept="value" and then get it with $_GET[].Do you think that AJAX would help here ?
  13. SunTzu

    Drop Down Lists

    Hi to All,I have spent whole day trying to figure out how to populate a drop down list according to the value of another drop down list.I have "departments" and "positions" so when i select a dept. from the first drop down i want the respective positions to populate the other. The problem here is that i need to do that before "Posting" the form which would resolve easily my problem.I tried to use JavaScript but in vain as JS is used at the client side while PhP at the server side.Please advise ...thnx
  14. SunTzu

    Passing variables

    Great !!!Thank you very much 'Against the Masses' You saved me from staying awake one more night
×
×
  • Create New...