|
Posted by J.O. Aho on 03/01/06 04:51
Sheldon Glickler wrote:
> I have code that does not delete from a database. The same code (cut an
> paste in the same file, but different function and having a different query)
> works. So, of course, I tested the query interactively. I echoed the query
> and did a cut and paste when interactively connect to the database. That
> one worked so it isn't the query since interactively it is seeing exactly
> the same thing as the code produces.
> $result = mssql_query($query, $Login);
> $result = mssql_query($query, $_SESSION['Login']);
Looking at the query function in your two functions gives this main
difference. As deleteCatalog() hasn't the variable $Login assigned any value,
it will be the same as Null which isn't a valid resource link definer, either
you change the function to use the following line
$result = mssql_query($query);
or
$result = mssql_query($query, $_SESSION['Login']);
//Aho
Navigation:
[Reply to this message]
|