Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

An is it possible question

 
   Web Hosting and Web Master Forums (Home) -> Webmaster RSS
Next:  Interesting Curser Question  
Author Message
geraldidontwan

External


Since: Jul 22, 2003
Posts: 39



(Msg. 1) Posted: Wed Jul 30, 2003 8:36 pm
Post subject: An is it possible question
Archived from groups: alt>www>webmaster (more info?)

Hi,

I have a membership application form on the Animals in Distress website
at http://www.animals-in-distress.net/memapp.htm for people to fill in
then print and send with a cheque, I wonder if it is possible to have it
place the amount in the Amount Enclosed box automatically depending on
the numbers and costs of memberships.

I have access to php but not asp.

Gerald

 >> Stay informed about: An is it possible question 
Back to top
Login to vote
blogan

External


Since: Jun 30, 2003
Posts: 285



(Msg. 2) Posted: Thu Jul 31, 2003 10:56 am
Post subject: Re: An is it possible question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Grytpype-Thynne" <geraldIDONTWANTSPAMbramwell.RemoveThis@hotmail.com> wrote in message
news:MPG.19920459eb96d9049896e3@news.individual.net...
 > Hi,
 >
 > I have a membership application form on the Animals in Distress website
 > at <a style='text-decoration: underline;' href="http://www.animals-in-distress.net/memapp.htm" target="_blank">http://www.animals-in-distress.net/memapp.htm</a> for people to fill in
 > then print and send with a cheque, I wonder if it is possible to have it
 > place the amount in the Amount Enclosed box automatically depending on
 > the numbers and costs of memberships.
 >
 > I have access to php but not asp.
 >
Yes, simply make the form page a php e.g. memapp.php and set the action to
self
e.g.
echo " <form method=\"post\" action=\"$PhP_SELF\">\n";

By passing any variables back to itself via the form call you can then get
parse the variables and return the result in the shape of the completed form
with the amount (totaled) etc.<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: An is it possible question 
Back to top
Login to vote
geraldidontwan

External


Since: Jul 22, 2003
Posts: 39



(Msg. 3) Posted: Thu Jul 31, 2003 6:24 pm
Post subject: Re: An is it possible question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <3f281d6e.DeleteThis@clear.net.nz>, blogan.DeleteThis@clear.net.nz says...
 >
 > "Grytpype-Thynne" <geraldIDONTWANTSPAMbramwell.DeleteThis@hotmail.com> wrote in message
 > news:MPG.19920459eb96d9049896e3@news.individual.net...
  > > Hi,
  > >
  > > I have a membership application form on the Animals in Distress website
  > > at <a style='text-decoration: underline;' href="http://www.animals-in-distress.net/memapp.htm" target="_blank">http://www.animals-in-distress.net/memapp.htm</a> for people to fill in
  > > then print and send with a cheque, I wonder if it is possible to have it
  > > place the amount in the Amount Enclosed box automatically depending on
  > > the numbers and costs of memberships.
  > >
  > > I have access to php but not asp.
  > >
 > Yes, simply make the form page a php e.g. memapp.php and set the action to
 > self
 > e.g.
 > echo " <form method=\"post\" action=\"$PhP_SELF\">\n";
 >
 > By passing any variables back to itself via the form call you can then get
 > parse the variables and return the result in the shape of the completed form
 > with the amount (totaled) etc.
 >
 >
 >
 >
Thanks Bill, I'll just have to read up on php now as I've never used it
before.

Gerald<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: An is it possible question 
Back to top
Login to vote
blogan

External


Since: Jun 30, 2003
Posts: 285



(Msg. 4) Posted: Fri Aug 01, 2003 12:02 pm
Post subject: Re: An is it possible question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Grytpype-Thynne" <geraldIDONTWANTSPAMbramwell.RemoveThis@hotmail.com> wrote in message
news:MPG.199336e64cb7166e9896e4@news.individual.net...
 > In article <3f281d6e.RemoveThis@clear.net.nz>, blogan.RemoveThis@clear.net.nz says...
  > >
  > > "Grytpype-Thynne" <geraldIDONTWANTSPAMbramwell.RemoveThis@hotmail.com> wrote in
message
  > > news:MPG.19920459eb96d9049896e3@news.individual.net...
   > > > Hi,
   > > >
   > > > I have a membership application form on the Animals in Distress
website
   > > > at <a style='text-decoration: underline;' href="http://www.animals-in-distress.net/memapp.htm" target="_blank">http://www.animals-in-distress.net/memapp.htm</a> for people to fill in
   > > > then print and send with a cheque, I wonder if it is possible to have
it
   > > > place the amount in the Amount Enclosed box automatically depending on
   > > > the numbers and costs of memberships.
   > > >
   > > > I have access to php but not asp.
   > > >
  > > Yes, simply make the form page a php e.g. memapp.php and set the action
to
  > > self
  > > e.g.
  > > echo " <form method=\"post\" action=\"$PhP_SELF\">\n";
  > >
  > > By passing any variables back to itself via the form call you can then
get
  > > parse the variables and return the result in the shape of the completed
form
  > > with the amount (totaled) etc.
  > >
  > >
  > >
  > >
 > Thanks Bill, I'll just have to read up on php now as I've never used it
 > before.
 >
Youre welcome
A good place to start is
<a style='text-decoration: underline;' href="http://hotwired.lycos.com/webmonkey/programming/php/index.html" target="_blank">http://hotwired.lycos.com/webmonkey/programming/php/index.html</a>

particularly
<a style='text-decoration: underline;' href="http://hotwired.lycos.com/webmonkey/01/48/index2a.html?tw=programming" target="_blank">http://hotwired.lycos.com/webmonkey/01/48/index2a.html?tw=programming</a>
which will give you a good start and has some basic form stuff that will be
useful<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: An is it possible question 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Question about Rollovers - I have a site I've been building and my boss wants the button for the page you are on to remain "lit" until you leave it for the next page. The problem with that is, I have the site in frame. The nav buttons are in the left frame and the p...

Question about caching - I redesigned a site for a client and launched it a week ago. Everyone else in the world can see the new site (I checked with serveral other people) but for some reason everyone in the client's office is still seeing the old version. I got them to delet...

Javascript Question - You know how some links have javascript embedded in them? Like <a href="javascript:history.go(-1)"></a>... Would this still work if javascript is disabled? -- Sharif Tanvir Karim http://www.onlyonxbox.net

alignment question - Okay Im in the process of making a website. Im making the main page in photoshop and then ill cut out the pieces and form a webpage like I always do. Anyway, I have a picture of an earth on a box that goes into 2 other boxes with gaps in between. Would I...

Fair Use Question? - I found this [http://blinkynet.net/spag/disc1.html] on Blinky's site and, besides pissing my pants and wiping the tears from my eyes, a question popped into my head. Since the disclaimer is entirely compiled of common phrases, would replication of th...
   Web Hosting and Web Master Forums (Home) -> Webmaster All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]