name . "
";
echo "Table name: " . $user_table_property->table . "
";
echo "Default value: " . $user_table_property->def . "
";
echo "Max length: " . $user_table_property->max_length . "
";
echo "Not NULL: " . $user_table_property->not_null . "
";
echo "Primary Key: " . $user_table_property->primary_key . "
";
echo "Unique Key: " . $user_table_property->unique_key . "
";
echo "Field Type: " . $user_table_property->type . "
";
}
}
mysql_close($connection);
?>