Posts by RebeloX • 292 points
7 posts
-
1
votes1
answer543
viewsA: Variable reading in C with timeout
Updating I noticed what the pmg said and went to research better on the subject, found some interesting things such as this code that works on linux, in addition the author referred to a library…
-
4
votes2
answers335
viewsA: Good graphical library for beginners?
First I must begin by distinguish graphic libraries of other libraries that besides the graphical part also work with audio, input, network, etc.. There are several graphic libraries but the best…
-
1
votes1
answer153
viewsA: Book tip for those who stopped in time
Like the Maicon said, the question will eventually be closed because it is based on opinions, but I will also leave some things that may be useful to you. If English is not a problem for you I…
-
3
votes3
answers880
viewsA: How to remove file including with include according to conditions
No way to remove an already included file. The code is interpreted on the server side by the PHP module, which also generates the web page to be viewed on the client side. This means that each time…
-
2
votes1
answer1676
viewsA: DOUBT can I make more than one ajax request on the same page?
Yes it is possible, i personally recommend using jQuery as it becomes easier to create requests via Ajax. I have developed a small code that demonstrates two ajax requests for the same page. HTML…
-
2
votes2
answers703
viewsA: How to save multiple users to an account like Netflix for example
When we want to develop a database we must structure it in order to create relationships between tables, this relationship part of principle of there is something in common in the tables, for…
-
1
votes1
answer363
viewsA: Search php on external site!
There are several Apis that allow you to obtain content from websites, such as simpleHTMLDom. But your question is based on a site that contains its own API (Youtube Data API) with this API you can…