ציטוט:
נכתב במקור על ידי miniature
מה שנתת לי זה לבדוק אורך של מחרוזת..
|
אני חושב שלא הבנתי אותך, אתה רוצה סתם לדעת מה האורך המקסימלי של שדה בטבלה?
אם כן, הנה קוד שמצאתי:
קוד:
<?php
$db=mysql_connect ("localhost", "root", "");
mysql_select_db ("DATABASE", $db);
$result = mysql_query ("SELECT * FROM TABLE");
$fields = mysql_num_fields ($result);
$rows = mysql_num_rows ($result);
$i = 0;
$table = mysql_field_table ($result, $i);
echo "Your '".$table."' table has ".$fields." fields and ".$rows." records <BR>";
echo "The table has the following fields <BR>";
while ($i < $fields) {
$type = mysql_field_type ($result, $i);
$name = mysql_field_name ($result, $i);
$len = mysql_field_len ($result, $i);
$flags = mysql_field_flags ($result, $i);
echo $type." ".$name." ".$len." ".$flags."<BR>";
$i++;
}
mysql_close();
?>