Posts by Bruno Cesar • 139 points
11 posts
-
0
votes1
answer16
viewsQ: Return query generate Array
I have a query in Mysql. foreach($resultado as $row) { $lat = $row['lat']; $lon = $row['lon']; $horario = $row['horario']; } I need the result to mount an array similar to this one below. $markers =…
-
0
votes1
answer617
viewsQ: Calculating Values of Different Plots
Guys, I have a spreadsheet in Excel with several lines with Product values. I will import these values into Mysql. For example: PRODUCT VALUE PRODUCT X R$ 700,00 I need to divide this $ 700,00 in X…
phpasked Bruno Cesar 139 -
1
votes1
answer25
viewsQ: Problem with SWF
I have a swf file and I can’t in any way put it on a page. I’ve tried every way and it doesn’t work. The problem is that this swf is a virtual tour and the customer wants it because they want it. ..…
-
0
votes0
answers39
viewsQ: See table by date
Guys, I have a table that the data is recorded as follows: ID CANAL VALOR DATA 25 10 50 2016-10-14 14:10:05 26 11 12 2016-10-14 14:10:06 27 10 51 2016-10-14 15:10:10 Both records are recorded…
-
2
votes0
answers50
viewsQ: Problem with Laravel Online application
Guys, I upped my app Laravel Online and gave the following error: Fatalerrorexception in Authserviceprovider.php line 9: Class 'Illuminate Foundation Support Providers Authserviceprovider' not found…
-
2
votes1
answer356
viewsQ: Field date entering 0000-00-00 00:00:00
The date field of my application is entering the values 0000-00-00 00:00:00, however I am not able to find the file that makes the Insert, The function you save to the bank is this: $db = &…
-
2
votes2
answers1832
viewsQ: How to make an image responsive without using frameworks?
I have the following doubt: I have the following image in a PSD file. I’m using Bootstrap to develop the system, but I needed this image to be made with CSS and be responsive. Any suggestions ?…
-
3
votes1
answer77
viewsQ: Count Values with PHP and SQL
Everybody, Good afternoon. I have the following question. I have a questionnaire with 10 questions, the answers to these questions can be 0 to 5, I would like to make a while out counting the…
-
0
votes1
answer47
viewsQ: Variable in SQL query
Guys, I’m trying to make a query with a variable that I’m receiving, but it’s not working. Any suggestions ? $model = $_REQUEST['model']; $customer = $_REQUEST['customer']; SELECT * FROM sistema…
-
2
votes0
answers375
viewsQ: Permission of MPDF file
Good afternoon friends, I am creating folders dynamically according to the user’s password. $dir = "relatorio/".$password; if(!file_exists($dir)){ umask(0); mkdir($dir, 0777,true); } $path =…
phpasked Bruno Cesar 139 -
1
votes1
answer68
viewsQ: Skip page 5 in 5 Blocks
Good afternoon, I’m returning data from a table and showing in CSS, but I need to display 5 blocks per page and every 5 blocks I need to insert a snippet of code to force the browser to go to…