I have the following arrays:
$corretor = array(
'Carlos',
'Andre',
'Rosinei',
'Vinicius',
'Thales'
);
$comissao = array(
5,
3,
3,
3,
2
);
How do I merge both, printing the result as follows:
Carlos - 5% | Andr...
I have a Webservice in PHP and I need to use it to integrate two applications. WS returns in JSON the data I need. The problem is that it returns only the data when the request is made from a local server. If I do the request from any web do...
I have the following link to access:
https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=5&q=brksedu&key={YOUR_API_KEY}
When accessed directly it returns an array like this:
{
"kind": "youtube#searchL...
I have a real estate system and I have developed my own XML standard for integration with Portals.
But the code that I use to read my XML, can not read the Viva Real standard.
Here is an example of the Viva Real pattern:
<ListingDataF...
I got a script (Java android and php) from a book I'm studying that simply takes a photo sent from android and saves it to a folder on my server.
Home
The android application ran without any error, but I ended up with an error in the file in...
Good afternoon, my friends, my problem today is this. I have the following query:
set @row_number = 0;
SELECT @row_number:=@row_number+1 AS row_number,il.* from itemloja il order by il.LojaId
As you can see, there are two that depend.
I wan...
I have two divs on my page, one class="rodape" and another class="content" .
The first is the footer of the page, and adjusts its position relative to bottom of the fixed contents of the page without problems.
Ho...
Good morning, I have in my application 10 different tables, but it has the same structure ... id | nome | descricao . For each table I have in laravel the Model , the Controller and the Views of cadastre...