php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35173 echo in a called program
Submitted: 2005-11-09 16:34 UTC Modified: 2005-11-09 16:34 UTC
From: claudebreault at netscape dot ca Assigned:
Status: Not a bug Package: Output Control
PHP Version: 4.4.1 OS: WindowsXP
Private report: No CVE-ID: None
 [2005-11-09 16:34 UTC] claudebreault at netscape dot ca
Description:
------------
(My setting: Apache 1.3 for Windows XP, PHP 4.3.3)
Hi,
   when I call a second program in HTML with "href", it is impossible to "echo" something in PHP within the second program.
but anything outside PHP is fine (in the following example the "Title" is printed). However, the second work fine by itself (Title and echo). This simplified code doesn't work.

First Program :
<HTML>
<HEAD></HEAD>
<BODY>
   <a href="SecondProgram.HTML">SecondProgram</a>
</BODY>
</HTML>

Second Program :
<HTML>
<HEAD></HEAD>
<BODY>
    <h1>Title</h1>
    <?php echo "Printing test"; ?>
</BODY>
</HTML>

This problem arises for whatever I try to "echo" in the second program (ex. grobal variables);

Thanks for your help
Claude


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-11-09 16:34 UTC] sniper@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 17:01:30 2025 UTC