Posts by Haone Nakano • 167 points
4 posts
-
3
votes2
answers428
viewsQ: Problem with IF Shell Script Syntax
I have the code below: RESPOSTA=$(asterisk -rx "sip show peers" |grep 4003 |awk -F" " '{print $6}') if[["$RESPOSTA" == "OK"]];then echo $RESPOSTA elif[["$RESPOSTA" == "Unmonitored"]];then…
-
2
votes3
answers1538
viewsQ: Download event problem in "href"
I have a problem where I need to find a file on the server Linux with the name of the value of <a href> and download it when you click on the link. the file path is /var/www/html/ligacoes…
-
7
votes3
answers12113
viewsA: Check if a table exists in the database
Create a function so you can search dynamically: public function verificaTabela($tabela) { $tabelas_consulta = mysql_query('SHOW TABLES'); while ($tabelas_linha = mysql_fetch_row($tabelas_consulta))…
-
4
votes1
answer1360
viewsQ: Period filtering in data type inputs
I have a system where I own a <input type="date"> and need to filter it, to bring on the calendar only the dates of 3 months ago and the current month I was using the attributes min and max…