If is easy please answer and this : when be online AND OPEN A FILE FROM
A WEB LOCATION HOST - MINE WITH NOTEPAD may after I modify it, save it
again to my hosting space WITHOUT save it to my PC first ? Please note
that I mean using NotePad and I mean entering the host username&password
when OPEN / SAVE ...? ATTENTION: I DO NOT MEAN SAVE IT TO MY HDD FIRST
AND AFTER UPLOAD IT !!! Please tell me the same[as for NotePad] but for
Dreamweaver MX ?
[EMAIL PROTECTED] 
-----Original Message-----
From: Forest Liu [mailto:[EMAIL PROTECTED] 
Sent: 18 March 2005 11:51
To: Leonidas Savvides
Cc: php-general@lists.php.net; [EMAIL PROTECTED]; sony-only;
[EMAIL PROTECTED]
Subject: Re: [PHP] How from an html/web form I may go to a php script
output(of form values)

I donot know what happened in Frontpage. I just use Dreamweaver to
design the page layout, and then UltraEdit to add php code.

I think you are asking about the page submit. You can find the exact
example in the php manual, which can be obtained from php.net

a.php:
<form method=post action="b.php">
      <input name=usrinfo value="Input your info here">
      <input type=submit>
</form>

b.php:
echo "your input just now is:".$_POST[usrinfo];

it will work.

On Fri, 18 Mar 2005 10:38:45 +0200, Leonidas Savvides
<[EMAIL PROTECTED]> wrote:
> How from an html/web form I may go to a php script output(of form
> values) ? I mean the programming for the result :
> 
> A visitor to webpage-A.php when press submit of a webform go to a
> webpage-B.php where as a php script uses the previous form data , and
> for example there's output of these data the exactly words the visitor
> enters ?
> 
> May this done in MS-FrontPage2002 ?
> 
> THE SCRIPT IN MS-FrontPage2002 HTML MODE NO EXECUTED BUT IS LIKE NO
> EXIST , UNLIKE THE CODE HAS ALREADY SCRIPT COLOR IN HTML MODE OF
> FRONTPAGE AND ALSO PHP SCRIPT FILE NAME xxx.php IS IN THE WEB FORM
> PROPERTIES ? ... I INSERT PHP SCRIPT IN <SCRIPT> ..... </SCRIPT> TAGS
?
> AND ALSO I TRY DELETE PHP SCRIPT INSERTING ONLY ONE COMMAND THE:
> <Script>
> echo "this operate till here";
> </Script>
> BUT AGAIN THE SAME RESULT .... ?
> After press SUBMIT the php script file shows in address bar and all
> viewed area is white (nothing on screen) ?
> 
> Leonidas Savvides
> [EMAIL PROTECTED]
> 
> 


-- 
          Sincerely,
                    Forest Liu(刘云?)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to