I need help to create a temporary table with php + mssql
I used this query
mssql_query("select * into ##temporario from table2",$db);
I doesn't create the temporary table
Thanks
Well, I think you need to create the table before you try moving data into it:
mssql_query("create table tempo (...)"); mssql_query("select * into...");