nightkarnation Posted August 16, 2010 Share Posted August 16, 2010 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- 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 More sharing options...
kenrbnsn Posted August 16, 2010 Share Posted August 16, 2010 Please post your code. Ken Link to comment https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/#findComment-1099973 Share on other sites More sharing options...
nightkarnation Posted August 16, 2010 Author Share Posted August 16, 2010 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 https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/#findComment-1099975 Share on other sites More sharing options...
Mchl Posted August 16, 2010 Share Posted August 16, 2010 What is the column datatype? Link to comment https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/#findComment-1099976 Share on other sites More sharing options...
nightkarnation Posted August 16, 2010 Author Share Posted August 16, 2010 field / type / ... offerPercentage / text / latin1_spanish_ci latin1_spanish_ci (currently setted, I have tried with different ones and UTF) Link to comment https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/#findComment-1099982 Share on other sites More sharing options...
PFMaBiSmAd Posted August 16, 2010 Share Posted August 16, 2010 So, is the % character present in the echo'ed output from your php script? Because, it is likely that you flash application is treating it as a special character and not rendering it. Link to comment https://forums.phpfreaks.com/topic/210891-isnt-displayed-back-from-mysql/#findComment-1099983 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.