I'm trying to import a database MySQL , both through WorkBench , and PHPMyAdmin , everything runs correctly, but it does not matter absolutely nothing.
Imported in WorkBench
Imported PHPMyAdmin
Messages in red...
The problem is that when I do a search, I get a result but it is not visualized in the way I expect.
When I make the query on the local server, it gives me the expected result:
SELECT TABLE_NAME FROM 'INFORMATION_SCHEMA'.'TABLES' WHERE TABL...
This is the code I want to update, it's from an sql query:
$cadbusca="select * FROM tb_ventas_dt WHERE id_venta='".$_SESSION['VENTA_ID_FOLIO']."'";
$rs = @mysql_query($cadbusca);
$rows = @mysql_num_rows($rs);
<table id="tableconcep"...
I'm trying to update the data, but when I update it, I change the user_id, but I want to continue saving it.
Function,
public function actualizaPagador($id_pago,$id_usuario,$pago){
$db=BaseDatos::conectar();
try{...
I want to export an image that I keep in a database and I show it on the screen and I want to export it to excel, but when I export it to excel I get an x and a message that says that the route was changed or that the file
this is my code
<?php
include ("conexion.php");
if(isset($_POST['btnagregar'])){
$codigo=$_POST['codigo'];
$cantidad=$_POST['cantidad'];
$ingreso=$_POST['ingreso'];
$consulta=mysql_query("select from registro_producto where...
I have a table logs that has 700,000 records. When I go to the "Browse" section in phpmyadmin to see the records in the table, I click on the "> >" symbol. to go to the "last page", basically to go to the end of the table and see th...
I need to connect a API REST to a database. I currently have a api in the hosting heroku with all its implementation configured with slim and swagger . This application is connected to a database phpmyadmin...
hi greetings I would like to know if someone could help me, what happens is that I am developing an online store in which after saving my shopping cart in my bd, haora was born the need to edit the data of the cart that I keep in the bd, I have...