Posts by Akashi • 43 points
6 posts
-
0
votes1
answer281
viewsQ: Select files from a directory by name
I have the following code snippet that searches for files in the directory : <?php session_start(); include("../conexao.php"); if(isset($_SESSION['MSLogin']) and isset($_SESSION['MSSenha']) ){}…
-
0
votes2
answers842
viewsA: Sharp word problem from Mysql database
You have to use the characters in utf8, saying that the characters contained in the searches cover the entirety of the western symbols. <?php header("Content-type: text/html; charset=utf-8");…
-
1
votes1
answer31
viewsQ: Update does not generate errors but does not update the table
I got a problem, and I’m here for help. This I have this code that refers to a complete customer registration form for my site Insert done, works perfectly and writes the information to the database…
-
0
votes1
answer114
viewsQ: Difficulty in While Loops and Foreach
I’ve been studying php for a little while so I didn’t properly understand the structure of the loops as while and foreach I would like someone to explain to me why this while displays nothing, and…
-
1
votes1
answer49
viewsQ: Difficulty in 1:n
Hello, I’m having great difficulty in making the relationship a table (clientes) and another (acompanhamento). Come on. I have these 2 tables in my comic book - clients and follow-up. The follow-up…
-
0
votes1
answer6413
viewsQ: INSERT and INNER JOIN together in Mysql?
Hello is possible to use the INNER JOIN together with the INSERT? I have a table A with 3 columns X, Y and Z and table B with columns W, X and Y and I need to insert in table A the column W of table…