HighDots Forums  

newbie question - please help!

alt.html alt.html


Discuss newbie question - please help! in the alt.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
graham@jhn316.karoo.co.uk
 
Posts: n/a

Default newbie question - please help! - 09-10-2005 , 01:15 PM






hi,
I'm doing a small business website for a relative, which needs a way
for customers to submit an order form. is there a simple way to do this
as i am very new to HTML etc. and i dont have much time to finish it.
I know that you would usually use forms and scripts and such like, but
the information the order form will collect is very simple and i am
hoping there is a simpler way.
I'm sure i've seen websites where they can open an e-mail program in
which they have the form ready for the customer to e-mail back{or
something like that).
Thanks in advance - Graham


Reply With Quote
  #2  
Old   
TJ
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 01:50 PM






In news:1126372533.743591.77580 (AT) g47g2000cwa (DOT) googlegroups.com,
graham (AT) jhn316 (DOT) karoo.co.uk <graham (AT) jhn316 (DOT) karoo.co.uk> wrote:

Quote:
hi,
I'm doing a small business website for a relative, which needs a way
for customers to submit an order form. is there a simple way to do
this as i am very new to HTML etc. and i dont have much time to
finish it. I know that you would usually use forms and scripts and
such like, but the information the order form will collect is very
simple and i am hoping there is a simpler way.
I'm sure i've seen websites where they can open an e-mail program in
which they have the form ready for the customer to e-mail back{or
something like that).
Given your time constraint and the admission that you're a "newbie", perhaps
www.paypal.com or something similar?




Reply With Quote
  #3  
Old   
IWP506@gmail.com
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 03:44 PM



Submit an order form? You mean like they fill out a form then hit
submit and it fills out the body of an email message automatically with
the address of your relative already entered?

Or do you want it to, for example, write it to a file on the server.

Personally, I think the latter is more professional, but it depends on
the abilities of your server.

Does your server support php?


Reply With Quote
  #4  
Old   
graham@jhn316.karoo.co.uk
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 04:12 PM



Thanks,
i'm planning on using paypal, it just wasn't clear if they deal with
the ordering side of things apart from shopping carts.
i'm mainly interested in thier e-mail options, but there isn't any
mention of ordering with them on thier website, do you know if they do
anything like this?


Reply With Quote
  #5  
Old   
graham@jhn316.karoo.co.uk
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 05:06 PM



Thanks!
i think i'm a bit out of my depth here!
the main reason i'm posting is that i don't have the technical know
how to even begin to adress the question of getting a simple order
from a customer - i'm just hoping theres a simple way to do it that
even i can understand! *any way* will do!
i recognise that i might be a bit nieve in this, but i thought it might
be worth it as a first approach


Reply With Quote
  #6  
Old   
aslfj lkajsf
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 05:17 PM




graham (AT) jhn316 (DOT) karoo.co.uk wrote:
Quote:
Thanks!
i think i'm a bit out of my depth here!
the main reason i'm posting is that i don't have the technical know
how to even begin to adress the question of getting a simple order
from a customer - i'm just hoping theres a simple way to do it that
even i can understand! *any way* will do!
i recognise that i might be a bit nieve in this, but i thought it might
be worth it as a first approach
I think PHP is the way to go (can you tell I like php? :P).

The only thing is that, in order to use PHP, your server needs to
support it.

To test, open notepad, write this in it:

<?php phpinfo(); ?>

and save it as test.php Upload it to your server and visit it in your
browser. If a big page opens, you're good. If it asks you to save or
open, or anything else, you don't have php

If you don't have PHP, I'm not sure what your next option would be...



Reply With Quote
  #7  
Old   
David Dorward
 
Posts: n/a

Default Re: newbie question - please help! - 09-10-2005 , 05:30 PM



graham (AT) jhn316 (DOT) karoo.co.uk wrote:

Quote:
I'm doing a small business website for a relative, which needs a way
for customers to submit an order form.
The basic approach is covered here:
http://www.allmyfaqs.com/faq.pl?Email_form_data

However, since this is an *order* form, I would suspect that you are going
to be dealing with sensitive data (such as credit card numbers). If so then
you are going to have to encrypt the data whenever it passes over the wire,
and need to ensure that it remains secure if it is sitting on the server.
This seriously adds to the complexity of the issue and given that you
stated you were a beginner at HTML, I'll assume you aren't expect in all
the relevant technologies needed.

https://www.paypal.com/cgi-bin/websc...erview-outside
suggests that it can handle an existing shopping cart or provide one if you
don't have such a tool already, so its probably a reasonable approach.



--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is


Reply With Quote
  #8  
Old   
Obvious
 
Posts: n/a

Default Re: newbie question - please help! - 09-11-2005 , 05:21 AM



On 10 Sep 2005 14:06:41 -0700, graham (AT) jhn316 (DOT) karoo.co.uk wrote:

Quote:
Thanks!
For what? What on earth are you replying to?

Quote:
i think i'm a bit out of my depth here!
You can say that again!!


Reply With Quote
  #9  
Old   
graham@jhn316.karoo.co.uk
 
Posts: n/a

Default Re: newbie question - please help! - 09-11-2005 , 04:37 PM




aslfj lkajsf wrote:
Quote:
graham (AT) jhn316 (DOT) karoo.co.uk wrote:
Thanks!
i think i'm a bit out of my depth here!
the main reason i'm posting is that i don't have the technical know
how to even begin to adress the question of getting a simple order
from a customer - i'm just hoping theres a simple way to do it that
even i can understand! *any way* will do!
i recognise that i might be a bit nieve in this, but i thought it might
be worth it as a first approach

I think PHP is the way to go (can you tell I like php? :P).

The only thing is that, in order to use PHP, your server needs to
support it.

To test, open notepad, write this in it:

?php phpinfo(); ?

and save it as test.php Upload it to your server and visit it in your
browser. If a big page opens, you're good. If it asks you to save or
open, or anything else, you don't have php

If you don't have PHP, I'm not sure what your next option would be...
Thanks for your help!
but really i am only posting to find out if there is a quick and easy
solution, PHP sounds pretty involved and i couldn't ask you to take me
through all of the steps needed - i would feel more confident learning
the basics myself and then i would have some idea of what i am doing -
besides this, it will probably be a week or two before get to the
server
do you know any good sources of information? (i have some programming
experience)



Reply With Quote
  #10  
Old   
graham@jhn316.karoo.co.uk
 
Posts: n/a

Default Re: newbie question - please help! - 09-11-2005 , 05:08 PM




IWP506 (AT) gmail (DOT) com wrote:
Quote:
Submit an order form? You mean like they fill out a form then hit
submit and it fills out the body of an email message automatically with
the address of your relative already entered?

Or do you want it to, for example, write it to a file on the server.

Personally, I think the latter is more professional, but it depends on
the abilities of your server.

Does your server support php?
Thanks for your help!
(by 'order form' i mean any way at all of getting details from a
customer about his/ her order)
i'm not really experienced enough to understand too much of what
you're saying. i'm really posting to find out if a simple solution is
avilable to the above problem, that isn't too technical, as a sort of
first approch to cracking the problem - if there is'nt a simple
solution i'm willing to learn the basics of HTML forms, scripts etc...,
then post when i know what i'm doing.
is there a dead simple solution? if there isnt do you have any good
sources of information for a beginner to learn the more technical side
of things? (i have some programming experience)



Reply With Quote
Reply




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.