Hi i am new to wordpress so i tried to make my first website, and when i tried using the builder there is a green button on top left corner so i could add text but the button is disabled. You can see in the image below which button i am asking for. I tried things like making a static page but it did not fixed the problem, also i updated all of the available updates. How to make the button enabled ?
Via Active questions tagged javascript - Stack Overflow https://ift.tt/4KIFwbN
i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype
Comments
Post a Comment