Everytime I use mssql_bind now I get the message:
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of mssql_bind(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file.
I wrote it this way:
//get stored proc
$query = mssql_init("PS_UpLoad_DataCheck", $s);
$supId = urldecode($_REQUEST['Source']);
mssql_bind($query, "@Source", &$supId, SQLVARCHAR);
Is there another way I should be writing this?
Thanks
Laura