+ Reply to Thread
Results 1 to 10 of 10

Thread: Problems with forms/pages not loading properly
      
   

  1. #1
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Problems with forms/pages not loading properly

    hi Guys,

    Thanks for your help on my last thread...i can now upload my pages!! thankfully!!

    Another couple of issues if anyone can help at all...

    1st - I have created a form - exactly as the video tutorial said - using the same fields - name, email address, submit etc.
    problem is, when i go to site and type details in, it gives me a message saying my mail client will send it etc, i confirm but do not receive the mail.
    when looking in outlook express it is in my sent mail as message sent from form etc but it never actually sends, so if someon fills a form in im not getting it - any ideas?

    And lastly - when i view the site -its fine!
    some people are not getting it - they get boxes with small crosses in and cannot navigate around the site.

    If anyone wants to take a look and tell me what they get it owuld be appreciated,

    its www.pine*****pub.co.uk (the contact form is in the contact page of the site)

    thanks to anyone that can help!!
    Troy

  2. #2
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Re: Problems with forms/pages not loading properly

    **Update on last thread**

    when the form is filled in, i DO now get an email saying its been sent from the web etc....but no text from the comments box is included with the email...there is an attatchment with a .att at the end but this will not open - any ideas?

  3. #3
    VodaHost's Avatar
    VodaHost is offline General & Forum Administrator
    Join Date
    Mar 2005
    Location
    Wilmington, Delaware USA
    Posts
    11,390

    Default Re: Problems with forms/pages not loading properly

    use the .php code that is provided.

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  4. #4
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Re: Problems with forms/pages not loading properly

    Quote Originally Posted by VodaHost
    use the .php code that is provided.
    im lost on this one to be honest..
    i have copied the code from another thread and get a thankyou for your feedback message - but in the form it now doesnt specify it needs to be mailed to my address so im not receiving any mail??

  5. #5
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Re: Problems with forms/pages not loading properly

    ok. . now i have selected the plain text option and i do get an email saying its from xxx@xx.xx and submit=submit on a new line..
    i still done get the text that somone would write!!>?>

  6. #6
    Gray's Avatar
    Gray is offline Sergeant
    Join Date
    Jul 2005
    Location
    Texas
    Posts
    30

    Smile Re: Problems with forms/pages not loading properly

    I was looking at your HTML code and I saw that you were missing a php code that sends the data to your email.

    PHP Code:
     <?PHP
    $email 
    $HTTP_POST_VARS[email];
    $mailto "info@pine*****pub.co.uk";
    $mailsubj "Form Submission";
    $mailhead "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody "Values submitted from web site form:\n";
    while (list (
    $key$val) = each ($HTTP_POST_VARS)) 
    {
    $mailbody .= "$key : $val\n"
    }
    mail($mailto$mailsubj$mailbody$mailhead);
    ?>
    To add this to your HTML Code, Click View > Page HTML, Click Inside Body Tag and Paste the Code in the box, then click ok and give it a try.

    I hope it works for you.
    The Eagle Radio! Playing the Best Hits From Rock to Oldies!

    Click Here to Tune In Using Winamp Player!

    Click Here to Tune in Using Real Player!

  7. #7
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Re: Problems with forms/pages not loading properly

    Hi Gray..

    thanks for your suggestion..
    still the same problem though im afraid.

    All i get int he email is the email address it is from,
    and then submit=submit.

    Im starting to tear my hair out with this one now, lol...
    any other ideas at all?

    Appreciate any help you can offer!!

    troy

  8. #8
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Problems with forms/pages not loading properly

    Im willing to bet the reason that people can't view the images is becasue they are linked directly to your hard drive. Make sure that ever image is linked to your website.

  9. #9
    Troy is offline Sergeant
    Join Date
    Nov 2005
    Posts
    29

    Default Re: Problems with forms/pages not loading properly

    can i be really thick and ask how to do this...
    im grabbing all my images from the same file...so i dont understand why some show, and others dont??

    thanx for the help tho

  10. #10
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Problems with forms/pages not loading properly

    Actually I an wrong... (I didn't realize you had a link to your site). Your links are correct, when the page first loaded I had some images with a red x, but the page loaded and they looked as they should. Are the users that complain about this problem on dial up? It may just be the page takes a while to load, and its giving you the red x until it loads the image

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. phpbb problems
    By Patti Johnson in forum mySQL & PHP
    Replies: 2
    Last Post: 10-10-2005, 04:20 PM
  2. centering web page problems
    By ctweb in forum General Support Issues
    Replies: 9
    Last Post: 09-30-2005, 05:38 PM
  3. Problems with version 7.0
    By ImagineThat in forum General Support Issues
    Replies: 4
    Last Post: 08-18-2005, 08:38 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49