Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. elfuser

    PHP dynamic function

    Hello Is there a way I can assign a function name to a string or reference and then call it? $func = 'name_of_function' or $func = &name_of_function() and then be able to use the variable to call the function? I can't seem to find this in the manual.
  2. elfuser

    Two fields be unique, like a compund primary key

    OK, my table definition now looks like this: CREATE TABLE `fs_gallery` ( `gallery_id` int(10) unsigned NOT NULL auto_increment, `visible_gallery_id` varchar(20) NOT NULL default '', `freesite_id` int(10) unsigned NOT NULL default '0', `name` varchar(50) NOT NULL default '', PRIMARY...
  3. elfuser

    Two fields be unique, like a compund primary key

    Here is the table: CREATE TABLE `fs_gallery` ( `gallery_id` int(10) unsigned NOT NULL auto_increment, `visible_gallery_id` varchar(20) NOT NULL default '' UNIQUE, `freesite_id` int(10) unsigned NOT NULL default '0', `name` varchar(50) NOT NULL default '', PRIMARY KEY (`gallery_id`)...

Part and Inventory Search

Back
Top