|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-04-19 19:11 UTC] torben@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 23:00:02 2025 UTC |
When using "mysql_list_fields" for a file you can extract the field names of the schema. For example: $fname. Then turn it into the variable for the schema name as $$fname. $$fname = 'something'; // **** works $$fname[0] = 'something'; // **** don't work --------------------------------------------------- Example --------------------------------------------------- $schema = mysql_list_fields("wine","wpo_dtl"); $nf = mysql_num_fields($schema); // get num of fields $xx = mysql_fetch_array($schema); while ($i < $nf) { $fname = mysql_fieldname($schema,$i); //***** this works ***** $$fname = 'something'; // ******* this don't $x = 0; $$fname[$x] = 'something'; } What am I doing wrong???