Re: calling a value into another php script... [message #182690 is a reply to message #182689] |
Thu, 29 August 2013 02:56 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 8/28/2013 9:35 PM, nag wrote:
> Hi all,
>
> I am using an index.html to execute a php prog. First I am choosing a an option from a dropdown list, which will connect to a mail server. If the password is correct then it will open second html page. I want to call the code part into the
> second html page. How can it be done?
>
> <form action=xyz.php method=POST>
> <option selected>Select from list</option>
> <option value="x23(at)xyz(dot)com">name1,code1</option>
> <option value="y13(at)xyz(dot)com">name2,code2</option>
> <option value="z33(at)xyz(dot)com">name3,code3</option>
>
>
> thank you.
>
Not enough information for an intelligent response.
Where is the password entered? If it's in the same form, you need to
validate the password in your script before calling the mail server.
And what mail server are you using? Most do not have a web interface,
but you have to look at the mail server interface to see how it works.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|