Display mysql field length with PHP
Free Scripts :: PHP :: PHP and Mysql :: Display mysql field length with PHP
Author: Salman Javaid
Website: http://www.salman.be
Website: http://www.salman.be
- How to display mysql field length.
- Show mysql table's field length with php.
- List all field lengths of mysql table.
This script list field length of all mysql table fields.
Script
$i=0;
$sql = mysql_query("select * from products");
while( $i < mysql_num_fields($sql))
{
echo mysql_field_len($sql, $i) . ', ';
$i++;
}
Output
11, 250, 5, 5, 65535




