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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: claudebreault at netscape dot ca
New email:
PHP Version: OS:

 

 [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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 07:01:32 2024 UTC