Posts by kcvventura • 43 points
6 posts
-
0
votes1
answer218
viewsQ: Add indicator in Materialize CSS tabs
Good morning, I am with the following nescessidade, I have a project where they existed many tabs made with materialize css, but on small screen devices the tabs are hidden to the right of the…
-
0
votes3
answers93
viewsA: Popular table in page loading
that wouldn’t be it ? try to get something like this on your table $file = fopen("dados.csv", 'r'); while (($line = fgetcsv($file)) !== FALSE) { //$line is an array of the csv elements echo…
-
0
votes3
answers93
viewsA: Popular table in page loading
I made other adjustments for you, it’s working, as I believe, that you wanted. <?php if ($_POST){ $name1 = $_POST['name']; $telpref = $_POST['tel']; $origem1 = $_POST['function']; $destino1 =…
-
1
votes3
answers93
viewsA: Popular table in page loading
friend the names of your inputs are different from the keys you are using in php, input this 'name[]' in the key this 'name' you can’t do it, the names must be identical and there are still other…
-
1
votes3
answers53
viewsA: How not to enable inherited js function?
I resolved this way, not so elegant, closing the Collapse so q use the function $('.collapsible').collapsible(); function fazalgo () { console.log(":)"); } <link…
-
2
votes3
answers53
viewsQ: How not to enable inherited js function?
As you can see in the example below, I have a Collapsible and in the initial structure I have a button/link (example + sign), I would like to be able to press this button and not activate the…