Link to home
Start Free TrialLog in
Avatar of TPoly
TPoly

asked on

passing values to certain site.

Hi,

I've created some textfields and textbox and let some values to be keyed in.
Is there anyway to save the values and then pass to them another site which has also some textfields and textbox, and let it process?

Avatar of COBOLdinosaur
COBOLdinosaur
Flag of Canada image

assuming there is a script on the oter site abel to process the form , you just make that the action of the form:

<form action="hhtp://othersite.com/somescript.cgi">
<input type=text" name=fields1">
additional inputs etc...
</form>

I don't know what you mean by saving them.  Saving them where?

Cd&
It depends on how the other site is programmed. If you have editing rights to the other site, it makes it easier.

What i mean is.. http://www.google.com/search?q=test

If you can pass a variable to the form and it automatically displays it, then you can do it.

Again, you will need to answer Cd&'s question as to what you mean by save.

:) SD
ASKER CERTIFIED SOLUTION
Avatar of rlovetx
rlovetx

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TPoly
TPoly

ASKER

however, i do not have direct editing rights to the other site...
what i mean is my app (a Java program) have some values to pass to a telco website (which provides free internet sms)..
once the values from my app pass to the website, it will automatic send the sms...
This has helped me alot, been putting together a web site for my wedding this year, need to pass the gift list number and password through to the John Lewis web site. This worked a dream. Thanks.