View Single Post
ישן 30-05-10, 14:46   # 4
~The_Sultan~
חבר על
 
מיני פרופיל
תאריך הצטרפות: Oct 2008
הודעות: 771

~The_Sultan~ לא מחובר  

אולי זה יעבוד:

PHP קוד:
$query mysql_query("show tables");
while (
$tables mysql_fetch_array($query))
{
     
$columns mysql_query("show columns from ".$tables);
     while (
$columns mysql_fetch_array($columns))
     {
          
$value $tables[$columns];
          
$new_value iconv("windows-1255""utf-8"$value);
          
mysql_query("update ".$tables." set ".$columns."=".$new_value);
      }

כתבתי לך את זה עכשיו ולא ניסיתי אז אל תסמוך על זה.
  Reply With Quote