R_J
AdminR_J Admin
-
Re: Escaping SQL?
Yes, it exists: $Database = Gdn::Database(); $Px = $Database->DatabasePrefix; $Structure = $Database->Structure(); $Sql = "your sql here"; $Structure->Query($Sql); Don't forge… (View Post)2 -
Re: [Solved] Problem with discussions in Vanilla 2.2.3.4 (Multi-Byte Encoding)*
TADAA!! Problem solved by uncommenting extension=php_mbstring.dll from php.ini :-) Thanks for the debug tip! (View Post)5 -
Re: Escaping SQL?
You could use more native sql even in ->Where() clauses if you use it as such: ->Where('a', 'b', FALSE,FALSE). That way, 'a' and 'b' will not be parsed b… (View Post)1 -
Re: ExcludeCategories plugin...
That's really easy. Thanks for that. I'll change it (View Post)2 -
Re: Scrolling Issue
It was tougher this time... Look at your body: it has a padding. Your navbar is fixed and so it ignores this padding, but your logo does not ;-) (View Post)1
