I need to download this page multiple times, it returns a different result each time it is accessed:
i="0"
while [ $i -lt 10 ]; do
curl -O http://httpbin.org/bytes/128
i=$[$i+1]
done
But every time the curl command is executed, the...
I'm getting this error:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 1640 bytes) in C: \ AppServ \ www \ muweb \ class \ Connect.php on line
31
When I run these scripts:
index.php
<?php...
I'm trying to convert a sizeable flowchart to Arduino code. The flowchart is as follows:
Considering your size I would feel more comfortable using the goto command as a flow control. However I have always heard that its use is a...
How can I get the loop to send every 10 emails or every X seconds? I want to prevent emails from falling on the spam list.
And how can I make the code read a .txt file with the emails listed and in future a database?
<?PHP
require_once(...
I'm trying for some time to delete images from a folder through an unlink inside a loop , in the case while , however I'm encountering the error:
PHP Warning: unlink (admin / imgsupload / 32acafa5b1bac0d2af522f76627e3212.jpg) [...
Good morning, I'm doing the loop using wordpress + bootstrap and at the time of showing the content the loop adds some posts as shown in the following image:
Followtheloopcode:<divclass="container">
<div class="row">...
I have some loops in my php and I want to get an array like this:
Array ( [nome1] => valor [nome2] => valor )
Within a loop I've tried: $array_dos_pagamentos[nome] = $variavelnome;
and in another loop $array_dos_pagamentos[...
I want the loop to run 10 times, and that every loop the $tempo variable that has the date / em> minute and seconds receive +10 seconds, but in the final result does not appear in fragmented seconds, 59, I want onl...