php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24331 Netscape diferent result as on MSExplorere????
Submitted: 2003-06-25 07:05 UTC Modified: 2003-06-25 07:06 UTC
From: info at getjo dot it Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 4.3.2 OS:
Private report: No CVE-ID: None
 [2003-06-25 07:05 UTC] info at getjo dot it
Description:
------------
Hi everybody,
with Internet explorer i get this result,

Edv-Experte?it ?Welsberg????

same thing on Netscape

Edv-Experte.it (Welsberg).()

this is the function I'm using

please Help me





Reproduce code:
---------------
> function suche_referent($such){
> 	$i=1;
> 	global $host;
> 	global $databen;
> 	global $pass;
> 	global $db;
> 	$mydb=mysql_connect($host, "$databen","$pass");
> 	if(!$mydb) die ("Die Anmeldung ist fehlgeschlagen.");
> 	mysql_select_db($db, $mydb)or die ("Die Anmeldung ist fehlgeschlagen!");
> 	$sql="select *from treferent where Referent like '$such%' order by Referent asc";
> 	$zeilen1=mysql_query($sql, $mydb);
> 	if (!$zeilen1) die ("Die anfrage ging in die Hose.");
> 	while ($zeile1 = mysql_fetch_array($zeilen1)){
> 		echo"<table width='100%' border='0' cellspacing='0' cellpadding='0'>
> <tr>
> <td class='txt' >$zeile1[Referent]</td>
> <td class='txt' >$zeile1[Beschreibung]</td>
> </tr>
> </table>
> </form>";$i++;}
> }//ende suche_referent
>

Expected result:
----------------
Edv-Experte.it (Welsberg).()

Actual result:
--------------
Edv-Experte?it ?Welsberg???? 
with Internet Explorer 5

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-06-25 07:06 UTC] derick@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. 

Thank you for your interest in PHP.

...
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 14:01:29 2024 UTC