Anyone can help me execute this 3 queries on php?
declare @result varchar(24);
exec usp_UserLogin @aUser = '$_POST[user]', @aPassword = '$_POST[pass]', @aToken = @result out;
select @result as token;
i need them to run one after each other, because as you can see, they need each other to work properly.
TY Nuno Santos