Date: 09/30/00
- Next message: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Previous message: Boaz Yahav: "RE: [PHP] example of: gethostbyaddr, gethostbyname?"
- In reply to: LDL Enterprise: "[PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Next in thread: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Reply: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> I want to use a different .php file to process the form instead
> of the page the form is on. Does anyone know the correct syntax
> for this. I have
> <form method="post" action="<?php echo $PHP_SELF?>">
>
> and try using this.
>
> <form method="post" action="<?file.php>">
>
> but it does not work. Thanks for any suggestions.
Just use:
<form method="post" action="file.php">
Joseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=================================
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Previous message: Boaz Yahav: "RE: [PHP] example of: gethostbyaddr, gethostbyname?"
- In reply to: LDL Enterprise: "[PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Next in thread: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Reply: Mike Erickson: "RE: [PHP] <form method="post" action="<?php echo $PHP_SELF?>">"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

