PHP Newbie - User login system

A

Anonymous

Guest
hi I am trying to say

if ($usercheck.recordcount = 1) {
echo "verifed" ;
}


else{}

but .recordcount is not right any ideas??

thanks
 
What do you want to do exactly??
I don't use ADOB...
Maybe there's another way to achieve that.

Anyway I found that the syntax was wrong -->

Code:
if ($usercheck.RecordCount( ) == 1) { 
echo "verifed" ; 
}

Check this link:
http://php4you.kiev.ua/docs/adodb.html#recordcount

Maybe you'll find answers :)
bye!
 
Back
Top