Questions tagged as 'mysql'

0
answers

How can I apply bank information in the modal?

Well, I'm working on my computer-based CBT and its purpose is to control student output. I was able to do registration, delete system, I am already working on the edition, however I would like to implement a button that when clicking, will show...
asked by 26.02.2017 / 16:23
0
answers

Problem uploading a photo to a web server

Hello! I'm having a problem uploading a photo taken from an android application to a web server. On the local server it normally sends the photo, already on the web server, it sends only one photo and only sends another if it clears the applicat...
asked by 11.03.2017 / 21:11
1
answer

Interaction Form PHP and MySql does not work

Friends, I'm doing pro bono work for a public service, and I've been trying to figure out what's wrong with my code for days. If anyone can help me, thank you very much. The form is this: <html> <style> ::-webkit-i...
asked by 11.03.2017 / 21:31
1
answer

Capture Month in date field

I have a date field in my MySQL database and it stores the date of type y-m-d which is already used in other queries, but now I need to capture only the month to make a sum. The code I have is this date_default_timezone_set('A...
asked by 04.11.2015 / 23:59
1
answer

Catch element selector created at runtime

I have a system that clears the fields and attributes of a table via javascript and ajax so far, but the elements created and listed at the precise execution time manipulate them through a selector like I do to pick up that selector like id?...
asked by 25.02.2017 / 20:38
1
answer

how to open only one field

I'm having the following problem when asking for jquery to open the form it ends up opening all at once to send a reply in the comment, but I need it to open just what I clicked as I do this. Follow the codes. javascript $(document).ready(f...
asked by 11.03.2017 / 18:14
1
answer

PHP & MySQL on AWS

Hello, I'm new to the AWS issue and would like to get a machine there to function basically as a localhost server (MAMP, WAMP, XAMPP) to function as a website, but with everything these "packets" already offer. What packages do I need to purc...
asked by 23.02.2017 / 14:07
0
answers

How to set time_zone using PDO

I have a connection using PDO that arrow SET NAMES UTF8 : $options = [ PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF8" ]; But I would like to add SET time_zone='America/Sao_Paulo' .But of all the ways I tried it I return...
asked by 24.02.2017 / 20:44
0
answers

Redeem controller data in multiple views

I'm developing a CodeIgniter site in which all pages must have a dynamic footer with data coming from the database. I loaded the view footer (I created a controller footer ) in the initial controller that loads a default which goes...
asked by 24.02.2017 / 18:45
3
answers

sql hide query parameter in return

Have the following query: SELECT idProdutos, SUM(quantidade) as soma FROM pedidos GROUP BY idProdutos ORDER BY soma DESC That returns...
asked by 03.03.2017 / 18:25