Questions tagged as 'header'

1
answer

Header does not work

Good People, I have a file in php that is called after completing a form in an html file. The function of this php file is to add data in the database and after inserting it has the following code: if(mysqli_query($con, $sql)){ echo...
asked by 16.06.2015 / 16:50
1
answer

When a header file is included, does the compiler include all the functions in the final program or only the functions used?

That is, is the executable going to have the whole library in it or only the functions that I use will be included by the compiler? With this, can you include many libraries that can make the program cumbersome (taking up a lot of disk space)?...
asked by 09.04.2015 / 21:11
1
answer

Meaning of .CH in Clipper and ADVPL languages?

When we use a language like Clipper or ADVPL, we usually use libraries. In C language, these header files have the suffix .H, which means Header File . I think it should be Custom Header File or Clipper Header File , but still not s...
asked by 04.12.2018 / 20:45
1
answer

Why when I include my .h header, is the .c implementation not included too?

I have three files, produtos.h , produtos.c and main.c . produtos.h is located in the "headers" folder, produtos.c is located in "sources" and main.c is in the same folder as "headers" and "sources", some...
asked by 08.10.2018 / 17:23
1
answer

How to add a custom header in AJAX with pure javascript?

I'm using pure javascript to send an AJAX with the Access_token header with a key inside, because web-service requests this request ... but it's not going as I would like. I want it to look like this: Butit'sgettinglikethis: Here's my f...
asked by 08.08.2014 / 13:36
1
answer

Creating images with text 'imagecreate ()'

This will be quite difficult to understand, because it does not have a very dynamic explanation. I will try to be as clear as possible! I want to create a letter generator that looks like this: link This is the site: link But as...
asked by 18.01.2017 / 23:58
1
answer

Capture SOAP Header with PHP [closed]

Good Afternoon I'm consuming a WSDL from a Webservice where after login and after each XML compliant request returned below I get the following tags in the Soap head <Sequencia> 1 </ Sequencia> <SessionId> 4b4uc253653...
asked by 13.11.2015 / 16:36
1
answer

Use Header from another WordPress site

I need to develop a website in WordPress, where I have to use the header (menu) of another site also in WordPress. One solution I found was to embed the same via Iframe, but it would have a delay a bit different from the other content on the s...
asked by 04.11.2015 / 13:11
1
answer

C ++: Error with Function Template

I've created a function using template, as shown in that answer , like this: utilits.h ... template<typename T> bool theres(T a, vector<T> b); ... utilits.cpp ... template<typename T> bool theres(T a, vector<T>...
asked by 27.06.2017 / 23:10
2
answers

About headers in C ++

Some doubts arise specifically about creating headers: If I create a test.h file, and another test.cpp, as the C ++ compiler does to relate the test.cpp file to the test.h file, that is, what are the criteria used? What prevents the settings...
asked by 03.08.2017 / 18:21