|
Posted by smorrey on 11/24/27 11:28
Sorry should have made mention of the fact that at least in this
instance it is all happening on the same page.
Here is the flow.
User submits info via form,
db connection is established
query is processed to check if the information exists.
This function then fetches the information that is already proven to
exist.
To work around this problem, and this is hackish as hell I know, but I
restated my problem, to this...
//Locates UID
function FindID($uid){
$query = "SELECT * FROM public.authinfo WHERE uid = '$uid'";
if ($_SESSION['db']->query($query)) {
return(TRUE);
}else{
return(FALSE);
}
}
This seems to work, but still anytime I try to fetch data I get the
original error, about an undefined method.
This is why my teeth are gnashing, and I'm pulling out my hair ;)
Navigation:
[Reply to this message]
|