Posts by AliniS • 143 points
10 posts
-
2
votes1
answer7204
viewsQ: How to generate an XML file from a PHP form?
I made the following form: <html> <body> <form method="post" action="cadastro.php"> Informacoes <br> Nome <input type="text" name="nome"> <br> Endereco <input…
-
3
votes1
answer91
viewsQ: Why is giving error in this PHP to write an XML?
Trying to make a simple XML that takes the data registered in a PHP page but is giving error, someone can tell me what it is and how it can work? Error that appears when pressing the button: Fatal…
-
-1
votes2
answers1239
viewsQ: How do I make it open a Pop-up by pressing a button?
I want to put a pop-up window when pressing the freight button, where it opens a page that the person puts the zip code and is calculated the freight of the product, how do you do this? If anyone…
-
0
votes1
answer77
viewsQ: Can someone help me with the GET function?
Making a shopping site, then have the products table and order table, where after the person buys something writes in the orders table, but wanted to record the product id in the orders table, how…
-
2
votes1
answer278
viewsQ: Password encryption problem (PHP)
I’m making a Pet Shop system and the problem is this: the customer makes the registration, and the password will be encrypted to the bank, but when the login is made it is an error. Example: the…
-
4
votes1
answer922
viewsQ: How to display a specific image?
I am making a system of films that register the poster of the film and I want that when generate the report with all the registered movies, it shows me the image of the poster saved in the bank and…
-
0
votes2
answers259
viewsA: Image upload with transparent background
I’m doing a job that has what you need and this part of images is simple, once I saw understood easy: if ($_POST['cadastrar']) { $foto = $_FILES["foto"]; if (!empty($foto["name"])) { // Largura…
-
2
votes2
answers381
viewsQ: Trying to make the login work, but shows no error but also does not enter
Like I did the right php as my teacher passed, I changed all the names and it’s all right, I already checked, but when I log in, he doesn’t log in, he just updates the page and doesn’t redirect to…
-
1
votes1
answer4981
views -
-1
votes1
answer260
viewsQ: Relationship of tables using FK’s
I am making a system that the user create an account and select the movies he has already watched. I have a table in Mysql movies to register all the movies on the site and a generous table that is…