Posts by PHP developer • 205 points
17 posts
-
2
votes1
answer341
viewsQ: Working with list and objects in Java
I have a java class called Library. with attributes: name, city, number of employees: public class Biblioteca{ String nome; String cidade; int qtdFuncionarios; //depois getters e setters e…
javaasked PHP developer 205 -
-4
votes1
answer2003
viewsQ: ERP system with PHP
I was hired to create an ERP system for a company. The system would be Web, hosted in the cloud, developed with PHP, MYSQL and Javascript. In addition to all registration screens, data…
-
0
votes1
answer104
viewsQ: User login site with his name on link
I have a web system in PHP and MYSQL that has user registration. Users register and access the system, being redirected to a panel: nomedosite.com/panel. What I need is that for every user who…
-
0
votes2
answers1846
viewsQ: Sending multiple attachments by Email
I have a form where among the text fields there should be an option to upload several files at once and then send all this by Email. My code is working when I attach only one file, I get everything…
-
0
votes1
answer2503
viewsQ: Website in two languages
I will have to develop a website in two languages, Portuguese and English. Nothing complex, but I am in doubt on how to organize the structure, so I would like the opinion of someone who has already…
-
0
votes1
answer569
viewsQ: Search content according to filling two Combobox
On the home page of my site I need to have two combobox for the user to select options coming from the database (for example: selects the state in the first combobox and when selecting the state in…
-
0
votes1
answer199
viewsQ: Asynchronous chat on Android
I’m developing an Android app where the home screen asks for user login. Simply put, a user can see the list of other registered users. I now need to implement an asynchronous chat. That is, the…
androidasked PHP developer 205 -
5
votes1
answer780
viewsQ: Validate captcha with PHP
I have a captcha in a form where an image with 5 randomly generated values is displayed. How do I validate the captcha and only send the contact if the input value is equal to the one generated by…
-
1
votes1
answer1756
viewsQ: State Combobox - PHP city
This is correctly filling the states combobox. How do I proceed now, when selecting the state to combobox of cities referring to the selected state is filled? How to implement the…
-
1
votes3
answers9416
viewsQ: Size and position of the Bootstrap Carousel on the page
The following code leaves Carousel occupying the entire page. How do I position it in the left half of the page and not occupying the entire page height? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML…
-
1
votes0
answers270
viewsQ: PHP banner with Flexslider
I am creating in PHP a banner display with the use of Flexslider. But when I load the example page I’m testing, nothing shows up. What could be wrong? The php file, images and flexslider.css,…
-
0
votes1
answer355
viewsQ: PHP Ajax - state combobox - cities
I want to select where, in a combobox, I select the state and open a new combobox with the respective cities of this state. I have it divided into two files: php states. //conexao com o banco... $rs…
-
2
votes1
answer1327
viewsQ: using Ajax to seek state - city
I need to create a conbobox of state and cities. According to the selected state, the corresponding cities are displayed. <select name="estados" id="estados"> <option value="0">Selecione…
-
0
votes0
answers37
viewsQ: Sending Email via SMTP
I implemented email sending in a form and when I tested it locally everything worked perfectly. I received the email correctly. When updating on the site and testing, the email is not sent. What may…
smtpasked PHP developer 205 -
1
votes1
answer103
viewsQ: Sending of SMTP Email
I am sending and is going as sent, but I do not receive, what can be? <? /Leitura dos dados de cadastro $nome = $_POST['nome']; $empresa = $_POST['empresa']; $telefone = $_POST['telefone'];…
-
3
votes2
answers854
viewsQ: PHP passing parameters
I have a registration screen where the user can change his data and after clicking the 'Save changes' button the changes are made in the database. Follow the button I created in the user editing…
phpasked PHP developer 205 -
2
votes1
answer712
viewsQ: Passing parameters from one page to another in PHP
I have a data listing on a page. There an 'edit image' serves as a link to another page where this data is displayed again (in addition to the other data of the client) and it is possible to edit…