Posts by thecreator • 475 points
24 posts
-
0
votes1
answer1054
viewsQ: Request movies by IMDB link
Good evening, I come here to question the community of ONLY if anyone has an idea of how to do this: Example, when we insert a link from IMDB in the input and we give Submit, it adds the movie to…
-
1
votes1
answer1319
viewsQ: Send message and update div without giving Reload the page
Good people, I’m developing a southbox and I’m here with a problem. I write something on Shoutbox and enter or click on enviar he refresh on the page.. I leave here what I already have .. INDEX.PHP…
-
2
votes2
answers80
viewsA: google android map in my app
After reading your question I just addressed the Google and in less than 10 seconds I found this: https://developer.android.com/training/maps/index.html. Read carefully that says it all there. EDIT:…
androidanswered thecreator 475 -
6
votes1
answer92
viewsQ: Does not insert data into database
Good people, I have this code, and the thing is that since I entered the part to upload an image it doesn’t send anything to the database. Not a new line creates, nothing at all. Someone can help…
-
1
votes1
answer54
viewsQ: Code problem
Okay, here’s the thing, I got this code: <form style="" name="form"> <input placeholder="Search..." name="name" id="fn" type="text"> <input style="display: none ! important;"…
-
2
votes1
answer235
viewsQ: Search without having to SUBMIT
I have the following code and I don’t know how to make it search without I need to give Ubmit, someone can help me? HTML <html> <head> <title>Data Searching Without Page…
-
1
votes1
answer419
viewsQ: Replace content according to search without having to give
Good people, I have the code word require_once 'Connection.simple.php'; $OK = true; $db->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING ); if (isset($_GET['name'])) { $data =…
-
2
votes1
answer914
viewsQ: How to increase div by clicking link?
I have the following situation: It is possible to click where it says Section #3 to div 100% increase and the bottom also be 100%? And when I clicked again on the other links everything was normal…
-
0
votes1
answer208
viewsQ: Submit text and image at the same time
Good evening guys, I have the following question, can someone help me do this (?): Do submit the image and text at the same time while doing submit. My idea was that the type="file" to make submit…
-
0
votes1
answer90
viewsQ: Make Submit with <a> and appear JS dialog
<form action="" name="Insert" method="post" onsubmit="alert(1); return false;"> <a href="#" onclick="javascript:document.Insert.submit()" type="submit" >Eliminar</a> Good people,…
-
2
votes1
answer111
viewsQ: Update does not work in database
Good staff, had already made a topic here about it and solved it right away, but then I noticed that when I fixed this problem I got another one. Here is the code: <? error_reporting(0);…
-
0
votes1
answer83
viewsQ: Update does not work in database
I have the following code and when I give Submit it does not update the ANYTHING in the database. $query = "SELECT * FROM tests WHERE ID = :ID"; $result = $db->prepare($query);…
-
2
votes1
answer76
viewsQ: Replace if loop is empty
Good people, I have a question because I was a little "stuck" not knowing how to do it. I have the following code: <? foreach($data as $index => $row) { $className = $index % 2 == 0 ? "class"…
-
0
votes1
answer265
viewsQ: Different divs in loop
I came across the following problem, with the code below I intended to add more fields without repeating the divs. Code: <? foreach($itens as $myrow){ ?> <div id="LISTA1_FUNDO_PRETO">…
-
2
votes2
answers4080
viewsQ: Fill Second Input automatically when First
I have a input I’m going to name input-1, and there I will insert this: 12:00 Having a second input I’m going to name input-2, is possible when inserting into input-1: 12:00 He in the input-2 can…
-
-3
votes1
answer128
viewsQ: Select multiple movie categories
Good, I come across the following puzzle (for me) which is the following, I sincerely know how to start doing what I want which is varios checkbox's each with its own value. Then I really don’t know…
-
1
votes2
answers550
viewsA: Check which page accessed previously and if positive display something
I’ll put it down here dois links that can help you resolve your question/question. 1st LINK (as I understand your question/doubt, this link is what should give you the most help.) 2nd LINK I didn’t…
-
3
votes2
answers582
viewsQ: Appear div to close only after clicking iframe
It is possible to have a div with a iframe and only after the user has clicked on one of the links within the iframe, would appear a div to say fechar and when the user clicked there, closed the div…
-
0
votes1
answer169
viewsQ: Change user data without it needing to login / Login
Good people, I think a lot of people who work with PHP has already come across this my question which is: When I edit something on user it does not edit soon, IE, have to log out and log in to…
-
-4
votes1
answer3187
viewsA: Convert HTML to Wordpress
If you only want the theme on HTML you can use the following program: HTTRACK. If you want all the functions, I don’t think it’s possible.
-
1
votes1
answer109
viewsQ: Set default value in Textarea’s if empty
I have two textarea on my page to give GET the value I have in my database and I want to delete the text of the two textarea automatically put a default value there "inside".…
-
6
votes2
answers4285
viewsQ: Just read the first character of a string
if ($myrow['Noticia'] !== '<' && $myrow['Noticia'] !== 'Nao') { echo "Noticia mal colocada!"; } I have this code and I’d like you to just check the first character of the column Noticias…
phpasked thecreator 475 -
1
votes2
answers740
viewsQ: Call javascript onsubmit does not "hold" the Submit until it gives confirmation of shunning
I find the following mistake: <form action="" method="post" onsubmit="sweetalert(1)"> Dados aqui !!! <input type="button" id="selectall-game-button" label="check all" value="Selecionar…
-
2
votes1
answer334
viewsQ: Check all just selects the first foreach value
Good people, I have the following code, and he was supposed to select all the values inside the foreach, but instead of doing it just selects the first value.. I tried to make a test of Submit that…