Posts by Ruan Rodrigues • 241 points
11 posts
-
4
votes2
answers435
viewsQ: UPDATE PHP com Javascript
I am trying to carry out the UPDATE, but gives the following error: Notice: Undefined index: id in C: wamp www Sitephp base updateFunctioning.php on line 4. Follow my code Function function…
-
0
votes1
answer38
viewsQ: Help with deleting record
I have my employee delete but gives these mistakes: "Undefined index: id in C: wamp www Sitephp base excluirFunctioning.php on line 6" "PDO::exec() expects Parameter 1 to be string, Object Given in…
-
1
votes2
answers168
viewsQ: Error in cpf mask
I created a form but when I went to put mask in the CPF to look like this Ex.(000.000.000-00) does not assign <head> <meta charset="UTF-8"> <title></title> <script…
-
2
votes2
answers1001
viewsQ: Receive information from the database and send to the form field
Good morning. I was wondering how do I get the information I want sent inside the input(Client name), because I did select and the information was not placed in the form field, it was on top .…
-
3
votes2
answers6350
viewsQ: View and edit registered data
I created a registration system and wanted to know how I do so that the information that was registered is displayed on the page and that the user can edit them. Follow my code below. <body>…
-
3
votes1
answer2354
viewsQ: Add required fields
I wanted to know how do I put that fields Name, Email, Password,of my form are required to complete them. Follow my code below: <!DOCTYPE html> <html> <head> <meta…
-
1
votes1
answer178
viewsQ: XAMPP has mysql active?
Well I was wondering if the XAMPP has the mysql active. Or if obsolete is equal to wamp
-
5
votes5
answers6496
viewsQ: Does not record records in my database
I created a registration system, but when I click the sign up button appears the message "Could not insert record:"... Someone can identify this error as I have so far been unable to identify it.…
-
0
votes1
answer469
viewsQ: I created a registration system using PHP+Mysql then when running asks to replace Mysql with Mysqli... Which ones should I replace?
<?php $host = "localhost"; $user = "root"; $pass = ""; $banco = "dbcadastro"; $conexao = mysql_connect($host, $user, $pass) or die (mysql_error()); mysql_select_db($banco) or die (mysql_error());…
-
1
votes2
answers642
viewsQ: I cannot display my database information on the page
I created my database php, made the connection with the mysql, but does not show the data that exist in my table on Phpmyadmin, what appears is this: " . resultado['nome'] ." ". resultado['email'] .…
-
0
votes1
answer727
viewsQ: Database does not show the information
Well I created a database on PhpMyAdmin by name students a table called information and put the data in it... Then I went to add it to my website when I add the code instead of the table…