DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19633>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19633 PHP Summary: PHP Product: Apache httpd-2.0 Version: 2.0.32 Platform: PC OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: mod_so AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] #1 Send variables to another page The variables couldn't catch in another page directly. example: //page1.php <form action=page2.php> <input type=text name=msg> <input type="submit" name="Submit" value="Submit"> </form> //page2.php echo $msg; //but it could not displayed //the alternative way is $msg = $HTTP_POST_VARS["msg"]; echo $msg; //the value displayed But it's not convenient if I has a lot of variables. #2 operator //test.php $data="Personal"; echo $data."<br>"; // it must display "Personal" $data.=" Computer"; echo $data; // it must display "Personal Computer" Plese correct what is wrong in Apache 2 with PHP --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
