Posts by Davi R Rossini • 147 points
17 posts
-
0
votes1
answer72
viewsQ: BOOTSTRAP NAV Collapsed Collapse changing height alignment
Problem: I need a navbar with BIGGER HEIGHT. I changed the css .navbar { min-height: 80px; vertical-align: middle; } .navbar-collapse .collapse .in { padding-top:80px; } Vertical alignment of links…
-
0
votes1
answer520
viewsQ: Return facebook user ID
As I can through an input field informing my facebook username, return my Facebook user number (id)? Case Input: http://www.facebook.com/usuario Output: $profile= '4559875758';echo $profile;…
-
0
votes0
answers226
viewsQ: HTML Js Share share content
I would like to know if there is any global solution to generate news sharing on a social media content portal. Or I have to insert a different meta tag for each social network on each page.…
-
1
votes1
answer232
viewsQ: Codeingniter counting lines and displaying on View?
I want to count and display a database field. Database: nbkg Table: chamados Model: chamados_model.php <?php class dashboard_model extends CI_Model{ public function lista($chamados) { $query =…
-
2
votes2
answers6493
viewsQ: Align DIVS in CENTER
I’m working with bootstrap + codeigniter and I can’t align the products in the center of a div. I would like the blue items in the center to be aligned by the center. HTML/PHP <div…
-
0
votes0
answers52
viewsQ: List with WHILE a QUERY with 2 Joins
I am trying to make a report by joining 3 tables. But the table is not being generated. The query works in PHPMYADMIN, but not in php. Database running the Query PHP code $sql = "SELECT…
-
5
votes3
answers11090
viewsQ: SQLSTATE[42S02]: Base table or view not found: 1146 Table
I’ve got this little problem in Laravel. The good old problem with the S that Laravel puts in the end. I have researched in innumerable foruns but the given solution does not work. SQLSTATE[42S02]:…
-
0
votes1
answer540
viewsQ: DRUPAL enable CLEAN URL
Good Afternoon. I migrated a website made in Drupal to the hostgator and now I can’t enable the Clean URL (Clean URL) option. Can anyone give me an idea of how to fix it? It’s probably some…
-
0
votes2
answers82
viewsQ: Error minSdkVersion 1 cannot be smaller than version 4
I’m studying a script and at the time of building the project it accuses version problem, but only I’m having this problem in my class. <uses-sdk android:minSdkVersion="1"…
-
0
votes1
answer767
viewsQ: findBy() all records with two conditions
I’m trying to work with findBy() in an application made in Symfony2. I would like to put two conditions on Findby or mix with Where if possible, but am not getting. $properties =…
-
0
votes1
answer72
viewsQ: Icone Android opens browser with website
I am creating a responsive page and would like to know if it is possible to create an installable app for android/Ios that is only an icon that opens the browser with the address of my webpage.…
-
0
votes1
answer435
viewsQ: Count SQL query with PHP percentage
I’m making a report and I need to count and display the number plus the percentage for the total count. With this code I already count. It is possible to display the percentage beside using sql and…
-
1
votes1
answer380
viewsQ: Generate Pie Chart with PHP javascript
Good Morning Everyone I’m trying to add a pie-Chart as a result of a report. // PEGA A DATA DIGITADA VIA FORM $dateStart = $_POST['datainicial']; $dateEnd = $_POST['datafinal']; // VARIÁVEL AUXILIAR…
-
1
votes1
answer2951
viewsQ: JOIN 3 different tables display list
Good Morning Everyone. I’m trying to join 3 tables and display in a list, but I’m not getting along. I drew (WITH LESS LINES) the tables in the database and an idea of how I’m trying to list the…
-
0
votes3
answers1664
viewsQ: How to Display SQL Query in an Array
I have a question. When I run a Select Count in the database it displays everything straight. But how to display it the same way using PHP? select country, count(*) as quantidade from customer group…
-
2
votes1
answer1230
viewsQ: Count and Display Records from different PHP/MYSQL tables
GOOD AFTERNOON. I am creating a report to tell and display: - the number of men and women (table: Customer) who made booking (table booking) at a hotel in a given period of time (passed via form).…
-
0
votes2
answers326
viewsQ: PHP + SQL UPDATE PROBLEM
Good morning, you guys. I am making a simple quiz for my web class and I have a problem to update SQL via PHP. The database is set right, select works but the update is inert in the system. No error…