Posts by Gabriel Rocha Nogueira • 86 points
4 posts
-
1
votes1
answer174
viewsA: I can’t run PHP code in VS Code
The PHP programming language was made to work on the server, to run the PHP scripts you will have to open a server, to open just use XAMPP and start apache on the home screen of XAMPP, so that PHP…
-
0
votes1
answer64
viewsA: How to Store Data from this Code?
It would not be good to take the data of span that is inside the button, because the value that is to appear there is what is stored, so I took your html and modified it to store the amount of like…
-
2
votes1
answer43
viewsA: Login redirects to action instead of header
The problem is in the form, the input tags are without the attribute name, add the attribute in the input tags name so that php can receive in action for example: Input email <input type="email"…
-
-1
votes1
answer191
viewsQ: Swap the letters of the beginning of an email with another character
I’m trying to replace letters with asterisks of an email using the preg_replace() php, but php takes all the letters in the email, but I just want to put the asterisks in the first letters. example:…