php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3841 HTML and PHP tag removal bug
Submitted: 2000-03-15 18:19 UTC Modified: 2005-03-31 16:13 UTC
From: mortenj at monet dot no Assigned:
Status: Wont fix Package: Misbehaving function
PHP Version: 3.0.12 OS: Linux
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 you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mortenj at monet dot no
New email:
PHP Version: OS:

 

 [2000-03-15 18:19 UTC] mortenj at monet dot no
*** Related to function fgetss() ***

Seems like (at least in some cases) that the contents of
the tag is still displayed it it contains whitespace. This code will eventually add pages to a search engine, but the contents of HTML tags can't come with the info. Kind of annoying this one. (Is this done on purpose?)

CODE EXAMPLE

  $fp = fsockopen("$host", 80, &$errno, &$errstr, 30);
   if(!$fp) {
    echo "$errst ($errno)<br>\n";
   } else {
    fputs($fp,"GET $geturl HTTP/1.0\n\n");
    while(!feof($fp)) {
    $input = fgetss($fp,1024);
    $input = trim($input);
    if($input != "") {
    $input = "$input\n";
     echo $input;
    }
   }
   fclose($fp);
  }

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-03-31 16:13 UTC] php-bugs at lists dot php dot net
We are sorry, but we do not support PHP 3 related problems anymore.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 14:01:32 2024 UTC