Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Having a form problem with emailing

Reply
Thread Tools

Having a form problem with emailing

 
 
Dennis M
Guest
Posts: n/a
 
      10-17-2009
Hi all, I just bought a Bible-searching site from a developer on eBay. It
uses a mysql file to search the entire Bible, and I have that up and
running fine. However, one of its features allows you to "mail a chapter of
the Bible to a friend" and on my site when you go to a particular Bible
chapter and try to mail it, the chapter isn't inside the value="" tag on
the form, however it is in that tag when you go to the original developer's
Bible site and try to mail a chapter from there. I was wondering what's
gone wrong here, I only had to do some simple modifications to the files
due to the difference in the site names and hopefully it's a pretty easy
fix.

My site is Superbiblesite.info, and the original site is
Ebiblesearcher.com. You can try to email yourself a chapter from both of
those sites and do a view source to see what I'm talking about.

Thanks in advance for any help!
 
Reply With Quote
 
 
 
 
Doug Miller
Guest
Posts: n/a
 
      10-17-2009
In article <dennism3->, lid (Dennis M) wrote:
>Hi all, I just bought a Bible-searching site from a developer on eBay. It
>uses a mysql file to search the entire Bible, and I have that up and
>running fine. However, one of its features allows you to "mail a chapter of
>the Bible to a friend" and on my site when you go to a particular Bible
>chapter and try to mail it, the chapter isn't inside the value="" tag on
>the form,


The problem has nothing at all to do with HTML -- it's in the script you're
using to generate that page.

> however it is in that tag when you go to the original developer's
>Bible site and try to mail a chapter from there. I was wondering what's
>gone wrong here, I only had to do some simple modifications to the files
>due to the difference in the site names and hopefully it's a pretty easy
>fix.
>
>My site is Superbiblesite.info, and the original site is
>Ebiblesearcher.com. You can try to email yourself a chapter from both of
>those sites and do a view source to see what I'm talking about.
>
>Thanks in advance for any help!


I hope you didn't pay very much for this site, considering the grammar errors
it contains...
 
Reply With Quote
 
 
 
 
Dennis M
Guest
Posts: n/a
 
      10-17-2009
In article <hbde37$h1n$>,
(Doug Miller) wrote:

>In article <dennism3->,

lid (Dennis M) wrote:
>>Hi all, I just bought a Bible-searching site from a developer on eBay. It
>>uses a mysql file to search the entire Bible, and I have that up and
>>running fine. However, one of its features allows you to "mail a chapter of
>>the Bible to a friend" and on my site when you go to a particular Bible
>>chapter and try to mail it, the chapter isn't inside the value="" tag on
>>the form,

>
>The problem has nothing at all to do with HTML -- it's in the script you're
>using to generate that page.
>
>> however it is in that tag when you go to the original developer's
>>Bible site and try to mail a chapter from there. I was wondering what's
>>gone wrong here, I only had to do some simple modifications to the files
>>due to the difference in the site names and hopefully it's a pretty easy
>>fix.
>>
>>My site is Superbiblesite.info, and the original site is
>>Ebiblesearcher.com. You can try to email yourself a chapter from both of
>>those sites and do a view source to see what I'm talking about.
>>
>>Thanks in advance for any help!

>
>I hope you didn't pay very much for this site, considering the grammar errors
>it contains...


Well that was a big help.
 
Reply With Quote
 
dorayme
Guest
Posts: n/a
 
      10-18-2009
In article <dennism3->,
lid (Dennis M) wrote:

> In article <hbde37$h1n$>,
> (Doug Miller) wrote:
>
> >In article <dennism3->,

> lid (Dennis M) wrote:
> >>Hi all, I just bought a Bible-searching site from a developer on eBay. It
> >>uses a mysql file to search the entire Bible, and I have that up and
> >>running fine. However, one of its features allows you to "mail a chapter of
> >>the Bible to a friend" and on my site when you go to a particular Bible
> >>chapter and try to mail it, the chapter isn't inside the value="" tag on
> >>the form,

> >
> >The problem has nothing at all to do with HTML -- it's in the script you're
> >using to generate that page.
> >
> >> however it is in that tag when you go to the original developer's
> >>Bible site and try to mail a chapter from there. I was wondering what's
> >>gone wrong here, I only had to do some simple modifications to the files
> >>due to the difference in the site names and hopefully it's a pretty easy
> >>fix.
> >>
> >>My site is Superbiblesite.info, and the original site is
> >>Ebiblesearcher.com. You can try to email yourself a chapter from both of
> >>those sites and do a view source to see what I'm talking about.
> >>
> >>Thanks in advance for any help!

> >
> >I hope you didn't pay very much for this site, considering the grammar
> >errors
> >it contains...

>
> Well that was a big help.


It was a Sunday example of non-Christian charity. Perhaps an angry
atheist? <g>

Look at your

<form name="form1" method="post" action="biblemail2.php">

and now see what is on your server to handle this. Perhaps go to a php
usenet group for more advice.

--
dorayme
 
Reply With Quote
 
Peter
Guest
Posts: n/a
 
      10-18-2009
In article <dennism3->,
lid says...
> Hi all, I just bought a Bible-searching site from a developer on eBay. It
> uses a mysql file to search the entire Bible, and I have that up and
> running fine. However, one of its features allows you to "mail a chapter of
> the Bible to a friend" and on my site when you go to a particular Bible
> chapter and try to mail it, the chapter isn't inside the value="" tag on
> the form, however it is in that tag when you go to the original developer's
> Bible site and try to mail a chapter from there. I was wondering what's
> gone wrong here, I only had to do some simple modifications to the files
> due to the difference in the site names and hopefully it's a pretty easy
> fix.
>
> My site is Superbiblesite.info, and the original site is
> Ebiblesearcher.com. You can try to email yourself a chapter from both of
> those sites and do a view source to see what I'm talking about.
>
> Thanks in advance for any help!
>

As Doug and dorayme have stated, this is not an html problem, but a php
and mysql one. Php being the server-side code that is used to generate
the web page. What data it requires to generate the web page will be
stored in the mysql database. What you are going to have to do is look
at the bible.php script to see how that accesses the database in order
to generate the html page and display the chapter. That should give you
a starting point of where to look in the database and how to go about
editing your biblemail.php to add the same info to the value tag of your
mail form.

However, any further discussion of this problem should be taken to
either a php or sql group.

--
Pete Ives
Remove All_stRESS before sending me an email
 
Reply With Quote
 
Dennis M
Guest
Posts: n/a
 
      10-18-2009
In article < >, Peter
<> wrote:

>As Doug and dorayme have stated, this is not an html problem, but a php
>and mysql one. Php being the server-side code that is used to generate
>the web page. What data it requires to generate the web page will be
>stored in the mysql database. What you are going to have to do is look
>at the bible.php script to see how that accesses the database in order
>to generate the html page and display the chapter. That should give you
>a starting point of where to look in the database and how to go about
>editing your biblemail.php to add the same info to the value tag of your
>mail form.
>
>However, any further discussion of this problem should be taken to
>either a php or sql group.


Good advice, thank you.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
emailing form Carlos ASP .Net 0 10-19-2007 08:10 PM
emailing results from form does'nt wortk. What do I do wrong? barlin HTML 2 08-04-2007 01:24 AM
Emailing Form Results in HTML Rob ASP General 1 07-11-2007 12:20 PM
Emailing form John ASP .Net 1 10-06-2004 06:25 PM
.NET emailing problem Mark Rodseth ASP .Net 2 04-27-2004 10:47 AM



Advertisments