Posts by João Costa • 121 points
3 posts
-
0
votes2
answers548
viewsA: Is there anything that works like a "Firebug" for Android?
Try the Firebug lite https://getfirebug.com/firebuglite For Chrome https://developers.google.com/chrome-developer-tools/docs/remote-debugging…
-
1
votes1
answer75
viewsA: Insert into CSV file
Save your data to the $list? $list = array(); for ($i=0; $i<=$nombre;$i++){ ... $list[] = $affiche; ... } $fp = fopen($search.".csv", 'w'); fputcsv($fp, $list); fclose($fp); echo "ficheiro csv…
-
1
votes1
answer694
viewsA: How to get the value of the textbox?
Put all the code inside if. If you don’t receive values you don’t want me to update the database. if ($_POST['txtnewpass']){ $txtnewpass = $_POST['txtnewpass']; $base_hndl = new SQLite3($dir.$base);…