Questions tagged as 'phpmyadmin'

1
answer

Instant search through an input with autocomplete (select)

I have a little problem with a part of the code. I try to do an instantaneous search that when entering data (registration) through an input, show (as verification) that the registration exists and show the name of the person who has that reg...
asked by 13.07.2018 / 22:34
2
answers

Send data from Javascript to PHP and then use Phpmyadmin

I am in a project in which I use javascript to take information from some forms and I would like to be able to work with a database through phpmyadmin but as I understand I must first pass all the data I have taken through javascript to php Ther...
asked by 16.05.2018 / 10:10
1
answer

Warning: mysqli_query () expects at least 2 parameters, 1 given in php on line 160

I need help with this error ... my code is as follows (some guidance please): I already made the corresponding connection to my bd ... I try to fill in a form with data (inputs) at the moment of pressing button. .. execute that code, relating th...
asked by 22.05.2018 / 07:40
2
answers

Error deleting data in phpmyadmin

I am trying to delete a data in a table in phpmyadmin, when I enter the table and I give it to delete, it does not erase the data. If I try Delete as a query from the console I get the following message: 1054 the column in where clause is unk...
asked by 01.06.2018 / 16:53
1
answer

Create two Delete triggers, in the same table

I currently have a disparador that updates when I delete a data from the table pago_detalles update pagos a join pago_detalles di on di.idpago = a.id set a.pagado = a.pagado - di.monto but do not let me create...
asked by 16.07.2018 / 21:09
1
answer

A date format that enters the DATE data of phpmyadmin

I have a secure table with the following list of variables: int idSeguro; String nif; String nombre; String ape1; String ape2; int edad; int numHijos; LocalDate fechaCreacion; And I want to relate it to this table that I have in phpMyAdmin....
asked by 26.02.2018 / 13:32
2
answers

Error uploading images in Laravel

I am doing a blog in Laravel, the posts have images and when creating a post an image is uploaded. If the post is created the image is uploaded perfectly but when the post is edited and another image is uploaded it does not go up and also the ad...
asked by 16.02.2018 / 00:53
2
answers

Export DATA from PhpMyAdmin NO structure

again with a query. This time my question is How to export the DATA from PhpMyAdmin I do not need to back up its structure, ie the tables and columns only, also the data, of course, if this is possible . If it is not, it may be possible to s...
asked by 27.02.2018 / 16:20
1
answer

How to know which user is logged in with ajax requests? [closed]

I have a problem with my ajax functions, I made a simple login with a request get to a REST server asking for the data of userName, password and id and I compare it with the entered data userName and password and if it matches one it redirects m...
asked by 04.04.2018 / 09:33
1
answer

Select certain MySQL table rows

Well, I have the following code: function dameTodosLosProyectos( $con, $cantidad = 0 ) { if( $cantidad > 0 ) { $query = "SELECT * FROM proyectos LIMIT $cantidad"; }else { $query = "SELECT * FROM proyectos";...
asked by 06.02.2018 / 12:49