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
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;
}
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.