Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. craigglenn

    SMTP Mail() problem

    thanks again everyone. I will look into phpmailer. "You can have anything in life you want if you help enough people get what they want" Zig Ziggler
  2. craigglenn

    SMTP Mail() problem

    Thanks to vacunita and chunkII123: for your patience and expertise. The reason it got confusing at the end was that I had a typo in my email address and the email was not going through again. From all the coping and pasting and changing to my data. sorry for that. Thank you both so much and...
  3. craigglenn

    SMTP Mail() problem

    I looked into using phpmailer but have not found a good resource document for getting through the whole process. Would love to hear some suggestion as I am not getting this to work and don't understand why. vacunita: I do understand where you were going with the . for concat and single quotes...
  4. craigglenn

    SMTP Mail() problem

    I get a parse error on this line. <td>', $_name,'</td> unexpected , I am testing with ""... did not get parse error but waiting to see if data passes or just the $_vars again... Thanks so much for hanging with me and helping me out. Been working on this for 4 days now. "You can...
  5. craigglenn

    SMTP Mail() problem

    OK, UPDATE... I changed the $To address from my yahoo email to one of my GoDaddy emails and it went through but I lost the post data from some reason. I know the data went through to the table so it's there... Maybe "" '' issue? here is what I received in the message. From: $_name Email...
  6. craigglenn

    SMTP Mail() problem

    Well I waited overnight and never received the email to test1@yahoo.com. I was so certain that we had it. I changed to a different $to email as someone had suggested and just sent it out. I will wait an hour and see. Here is the response I received from GoDaddy. Of course they didn't...
  7. craigglenn

    SMTP Mail() problem

    Thanks so much for your detailed answer. I really believe this is going to solve my problem but I am getting this error and can't seem to put my finger on the parse error. Parse error: syntax error, unexpected T_VARIABLE in /home/content/74/6837474/html/domain1/insert_contact.php on line 59...
  8. craigglenn

    SMTP Mail() problem

    UPDATE My test message (simple) finally went through. this is the code I used to test with. $myAddress = 'email@domain.com'; //replace with working adddress mail($myAddress, 'subject', 'this is a test message', "From: $myAddress\r\n") or die ('error in mail function'); echo 'mail delivered to...
  9. craigglenn

    SMTP Mail() problem

    NEW TO PHP I am having a problem sending an notification email once a form is submitted on my Wordpress blog hosted on GoDaddy. Just a simple contact form. In the beginning I was getting my email delivered but it was very slow, 15 mins to and hour and not it just never shows up. I have tried...
  10. craigglenn

    Form Post Submit - Blank page

    Thanks, I really do appreciate your help, it's been a long one. Worked like a charm and that's a lesson I wont have to learn again. Now off to tackle the email issues... Learning is fun... lol Craig "You can have anything in life you want if you help enough people get what they want" Zig...
  11. craigglenn

    Form Post Submit - Blank page

    Vacunita, Well First I am new to PHP so forgive my ignorance. I did spend hours today trying to find the solution and figure it out on my own. Header did work for me but I had to take a stab at where to include it since you didn't say. Thank you for responding and helping me solve this...
  12. craigglenn

    Form Post Submit - Blank page

    I have searched high and low and can't seem to find the solution that fits my situation. Wordpress 3.X PHP 5.x MySql 5.0 URL with Post Form: http://hiremaureen.com/contact-maureen-mchale/ Problem: The form works, the PHP loads data into my table, the email fires (still working on some...
  13. craigglenn

    parse error with my PHP code

    jpadie, Sorry, saw that on another post from jdhilljr! Got my programmers confused. Thank you JPADIE and Jim(jdhilljr)! Craig "You can have anything in life you want if you help enough people get what they want" Zig Ziggler
  14. craigglenn

    parse error with my PHP code

    thanks for the insight Jim. I will keep plugging away at it and give an update later. Thanks again for your time. "You can have anything in life you want if you help enough people get what they want" Zig Ziggler
  15. craigglenn

    parse error with my PHP code

    configuration.php <?php class JConfig { var $offline = '0'; var $editor = 'jce'; var $list_limit = '20'; var $helpurl = 'http://help.joomla.org'; var $debug = '0'; var $debug_lang = '0'; var $sef = '0'; var $sef_rewrite = '1'; var $sef_suffix = '0'; var $feed_limit = '10'; var...
  16. craigglenn

    parse error with my PHP code

    Nice catch jpadie. I am new to php. I will check the configuration.php file for errors. Don't think I should post it as it contains access var's to the site. I am using php 5 and mysql 5. Sorry for not giving that info up front. "You can have anything in life you want if you help enough...
  17. craigglenn

    parse error with my PHP code

    In the configuration.php file that I included. "You can have anything in life you want if you help enough people get what they want" Zig Ziggler
  18. craigglenn

    parse error with my PHP code

    I am receiving the following error in my php file. I have searched for syntax errors but just can put my finger on it. Parse error: syntax error, unexpected T_VARIABLE in /home/content/b/a/r/barbmcvicker/html/includes/insert_tips_request.php on line 3 PHP code: <?php...
  19. craigglenn

    Search problem

    thanks jpadie, it works! Thanks again for your help. "You can have anything in life you want if you help enough people get what they want" Zig Ziggler
  20. craigglenn

    Search problem

    $_searchTerms = mysql_real_escape_string($searchTerms); $_searchTerms = str_replace(' ', '( |\-)?', $_searchTerms); $query .= " AND (company_name regexp '.*{$_searchTerms}.*') ORDER BY c.category_id ASC, company_name ASC"); OK so I did some research and get the first two lines. I am having...

Part and Inventory Search

Back
Top