Questions tagged as 'php'

1
answer

SQL - Group query result in a field

I am programming a script in php and I have created the following query: SELECT t2.id_usuario, t3.nombre, to_char(t1.fichaje_fecha, 'YYYY-MM') AS mes ,SUM(CASE WHEN t1.operacion = '+' THEN t1.tiempo ELSE '00:00:00' END ) AS "positivo" ,SUM(CAS...
asked by 24.03.2017 / 16:43
1
answer

Print return of a class in another class in PHP

How could I print the return of the $ formData variable in a class in PHP? function location_form_handler($formData) // Use a different function name for each form { $formName = 'General'; // change this to your form's name $f...
asked by 06.08.2017 / 04:47
0
answers

Display another file name in URL with .htaccess

I wonder if it is possible to show another name that is not the actual name of the current file, for example to be in localhost/Index2.php But show localhost/Index without the .php, even if we really are in Index2.php .     
asked by 07.08.2017 / 14:19
0
answers

Label reference [closed]

I have this code and this function and I want the value obtained in the function to be able to send it to a label in my index file so the user can see it. for example if my select option says Rob my label says robertos $(function(){...
asked by 14.03.2017 / 01:15
0
answers

Android send photos to a server

surely there are many post of these for several places, I have read several and I have looked for several examples. Not being an expert on Android there are some things that I can not understand, so I do this POST, because the weird thing is tha...
asked by 18.03.2017 / 22:14
0
answers

Login system in Lumen

It's my first experience with the Lumen framework (version 5.4.5) and I'm having problems with the login system. The official documentation does not say anything beyond how to obtain the user identified in the system, and what directives to u...
asked by 17.03.2017 / 11:20
1
answer

Make url with api rest php

I have two tables: cars and garages. I want to do the following: url/coches/xxx/garaje where xxx is the ID of the cars. The problem is that I do not know what to put in the .htaccess and where to put the rest to appear. I already...
asked by 15.03.2017 / 20:08
0
answers

Problem when wanting to pay market payment in sandbox mode with php

I am trying to make the fictitious payment of the payment market in sandbox mode with easy payment, when I return the payment codes, I go to the easy payment I tell the cashier and it says something like "code not valid", this is the code that I...
asked by 15.03.2017 / 22:07
2
answers

problem with cookie and user table mysql php

Hello people I am doing the part of "Keep the session started" in the following way: two cookies are created, one with the user and the other with a series of random numbers (which are a field of the user table) , the problem that I have is that...
asked by 06.05.2017 / 07:17
1
answer

How to correct multiple choise exam

I am doing a multiple choise exam system with php and mysql (a question may have 1 or several correct answers). The problem I'm having is when it comes to correcting the exam, I do not know how to do it. Can someone give me an idea as to the...
asked by 07.05.2017 / 20:09