Posts by FelipeBr193 • 31 points
5 posts
-
0
votes0
answers63
viewsQ: Children inside a Children
Is it possible to create a Children inside a Children? I’ve tried it this way but I don’t know how to do it. export default { data: () => ({ dialog: false, drawer: null, items: [ { icon:…
-
1
votes1
answer249
viewsQ: No suitable Parent found from the Given view. Please provide a Valid view
Good Morning, I have this mistake : No suitable parent found from the given view. Please provide a valid view. I’m entering the registration view and this returning me this message, tried to fix it…
-
0
votes0
answers123
viewsQ: Android Attempt to invoke virtual method on a null Object Reference
I have this mistake and I can’t figure out how to fix it. Attempt to invoke virtual method 'android.content.res.Resources android.view.View.getResources()' on a null Object Reference This is the…
androidasked FelipeBr193 31 -
1
votes2
answers1873
viewsA: How to center the text of the select option?
guy I had the same problem but I managed to solve I had to make a css sheet and put the following code css: .select-center{ padding-left: 15%; padding-right: 15%; } html: <select…
html5answered FelipeBr193 31 -
1
votes0
answers434
viewsQ: Upload files and images with PHP and Mysql
I’ve got a bug in my code only I don’t understand that is the code: <?php $db = new PDO("mysql:host=localhost;dbname=filedb;charset=utf8", "root", ""); $msg = false;…