Posts by Luiz Bortoluzzi • 49 points
4 posts
-
-2
votes3
answers32
viewsA: Open a href link in php
I suggest changing the line <a target="_blank" href="<?= $site . 'webmail' ?>"> To <a target="_blank" href="<?= $site . '/webmail' ?>">…
-
2
votes1
answer80
viewsA: Error when executing an INSERT in a view
The databases usually do not allow to make updates in views, in some one can even configure it in the creation of the view but goes a lot of database, as views do not pass a selection of several…
-
2
votes2
answers511
viewsA: Insert Image and music into a c++ project
There’s a very interesting library called Allegro. It is possible to do everything you want, including working with the movements of the scenario in a very didactic way. There are several tutorials…
c++answered Luiz Bortoluzzi 49 -
1
votes1
answer755
viewsQ: Recursively counting sequence of numbers in a C matrix
So I have the following problem: I need to count how many decreasing sequences of numbers there are in a matrix recursively, but it is only considered a sequence if it is completed to number 1. Ex:…