create data base table dynamicaly on server in php
I am new in php.I am working on a project in which when user enters information and clicks 'Add house ', a new table having the name of house no should be created on server. i tried some code .but i did 't get the output.plz send the code for getting the output.......
Answers (3)
0
it shows me this error : localhost.SqlParameter does not contain a constructor that takes 2 arguments
in
param[0] = new localhost.SqlParameter("KeyWord", b[1].ToString());
this line...
0
Hi u can try like this
localhost.SqlParameter[] param = new localhost.SqlParameter[2];
param[0] = new localhost.SqlParameter("KeyWord", "Testing");
param[1] = new localhost.SqlParameter("PageSize", 20);
var objGetDetail = Obj1.GetDetail("SP_Related", param).Tables[0];