PHP form plugin

Status
Not open for further replies.
PHP:
->where('el_tiempo_de_espera_en_sala_ha_sido' IS NOT NULL);
is not valid code, try replacing with:

PHP:
->where('el_tiempo_de_espera_en_sala_ha_sido IS NOT NULL');
 
PHP:
->where('nombre = Call-Center');
is not valid SQL

replace with

PHP:
->where('nombre = "Call-Center"');
 
in fact in general you are not quoting things - that will not produce correctly formed SQL
Every time you have a
$db->execute();

just before that place

PHP:
echo $query->dump();exit;

to see the generate query - copy paste that into phpmyadmin and run it - you should be able then to see if it works or not
 
I am deeply grateful to you, Rob. Has been truly valuable to your guidance for managing SQL Fabrik puts me in a new professional level. Thanks, again. It is valuable your work and that of your team. This was the result:
migrafica.png
 
Status
Not open for further replies.
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top