Jump to content

% isn't displayed back from mysql


nightkarnation

Recommended Posts

Ok... the --> % <-- character...is saved perfectly to mysql (from php) ... but when i want to retreive it with php (and send it to flash)...this is where the --> % <-- character is lost and not being displayed...

 

in other words the field with 75% is saved and when I grab it back from mysql it only displays 75 (without the %)

 

What should i do to fix this?

 

(I tried changing the table field to UTF-8) but still is not working (it works with these characters for example:  ó,í,é)

 

Thanx in advance!

Cheers,

Link to comment
https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/
Share on other sites

Hope this helps:

 

if ($action == "retrieveOfferPercentage")
{

$email=$_POST['Email'];

$result = mysql_query("SELECT offerPercentage FROM offers WHERE seller = '$email'"); 
$cant = 0; 
    while($row=mysql_fetch_array($result))
{
	echo "offerPercentage$cant=$row[offerPercentage]&"; 
        $cant++;
    } 
    echo "cant=$cant&";
if($result) 
{ 
	$imdoneUpdate = true;
	echo "imdoneUpdate=".$imdoneUpdate;
} 
else 
{ 
	$imdoneUpdate = false;
	echo "imdoneUpdate=".$imdoneUpdate;
}
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.