I'm looking for a datatype what's the same is as Enum or set in mysql.
Only now I'm looking for it in MS SQL.
The description for Enum is: Columns of this type can only hold one of the values listed or NULL
the only difference between enum and set is that Enum has a maximum values of 65535 and...
It's not so difficult it looks like ;-)
first make connection to your mysql DB with PHP.
$dbrs = mysql_query("SELECT * FROM temporary ORDER BY Item");
for($i=0;$i<mysql_num_rows($dbrs);$i++){
$rs = mysql_fetch_array($dbrs);
if($rs["Items"]==$Item){...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.