Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > How to redirect form data do PHP doc in NEW WINDOW?

Reply
Thread Tools

How to redirect form data do PHP doc in NEW WINDOW?

 
 
ML
Guest
Posts: n/a
 
      07-09-2003
Hi all,

I have a form and I want to POST data from it to PHP doc which will be
opened in new window.
How should the syntax look like:

<input type=submit value= ??? >

I have tried javasript here but it did not work.

regards

Michal Leder


 
Reply With Quote
 
 
 
 
Steve Pugh
Guest
Posts: n/a
 
      07-09-2003
"ML" <> wrote:

>I have a form and I want to POST data from it to PHP doc which will be
>opened in new window.


All the reasons why opening a new window is a bad idea apply for form
submissions just as much as they do for links.

>How should the syntax look like:
>
><input type=submit value= ??? >


<form action="whatever.php" method="post" target="_blank">
<input ...>
<input ...>
</form>

>I have tried javasript here but it did not work.


Often the cae.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <> <http://steve.pugh.net/>
 
Reply With Quote
 
 
 
 
ML
Guest
Posts: n/a
 
      07-09-2003
OK, I know now how to do it.
It was really simple.

Sorry for bothering about this!

regards

Michal Leder


 
Reply With Quote
 
 
 
Reply

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP Training Institute In Delhi, Live Projects on PHP. Short TermPHP Courses, PHP Scripts, PHP Training with Live Projects. Rajive Narain Java 0 09-18-2009 10:47 AM
Best site for freelancer work (PHP, Web site, java, oracle sql, php,data entry) raviraj joshi Python 0 07-04-2009 03:16 PM
Best site for freelancer work (PHP, Web site, java, oracle sql, php,data entry) raviraj joshi NZ Computing 0 07-04-2009 03:05 PM
String[] files = {"a.doc, b.doc"}; VERSUS String[] files = new String[] {"a.doc, b.doc"}; Matt Java 3 09-17-2004 10:28 PM
Basic Q - Response.Redirect, all redirect to first Response.Redirect statement Sal ASP .Net Web Controls 1 05-15-2004 03:46 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57