I am struggling with 2 basic questions:
$country_array = enum_options(‘usercountry’, $link_id);
When I run this script, I get undefined function enum_options
Inserting values into a mysql table called user
$result = mysql_query ( “INSERT INTO user (userid) VALUES (‘sphinx’)”);
This adds userid ok.
But if I type
$result = mysql_query ( “INSERT INTO user (userid,usercountry) VALUES (‘sphinx’),(‘Scotland’)”);
I do not get Scotland added to the database.
Help please!