Questions tagged as 'include'

1
answer

How to track the execution of php file by console?

   Update update: Actually my problem had nothing to do with this snippet of blockquote underneath. I learned to debug PHP, and I encountered several errors, but I will not even go into each one of them because it's not the case ... So, h...
asked by 04.07.2015 / 19:09
1
answer

How to add includes by expression in repository pattern C #

I'm creating a RepositoryBase (Repository Pattern) with EntityFramework Asp.Net Core, and in it I'm creating a Where method, where I pass an entity where expression. So far the method works perfectly, but in this same method I would like to pass...
asked by 13.08.2018 / 19:41
2
answers

Insert an HTML code in a client-side way without using PHP [duplicate]

Personal I have two external files called header.html and footer html containing headers and footers of a website, with menus and etc. I need to include these external files in the pages of the site without the use of PHP. There's something...
asked by 11.10.2017 / 00:06
1
answer

Problem with namespace and include

Good morning. I have a webservice made in slimPHP. I have a class that is called control , and it belongs to the controllers namespace, it works normally without problems, but the need arose to import a class for PDF manipulation, s...
asked by 06.06.2017 / 15:15
1
answer

make an include of a library outside the libraries folder

How do I include a library that is not in my library folder in C ++? I know that the directive of #include with <> can make the include of the file that is not in the same folder, but if I have several folders with a libra...
asked by 11.05.2017 / 01:48
2
answers

Include_once and directional directories - php

I'm having problems with include in relation to directories, because when I call a class from another directory that contains another include the paths are different. I need to know if there is any way to unify these includes and always call the...
asked by 06.01.2015 / 21:21
0
answers

Replication of libraries [duplicate]

In the C / C ++ language, when I include the same library in multiple .h files for the same program, is the code repeated or does the compiler avoid such reinclusion?     
asked by 09.10.2018 / 23:49
0
answers

include does not work

I made a modular system in which each part of the pages are in a folder, the problem is that I have a page with a form that is inside a modal, this form receives information from the bank, when I just sow the form it works and when I run the mod...
asked by 24.09.2018 / 21:30
0
answers

How to insert a navbar include in the Twig layout

What is the correct way to include a navbar include in the main page, Twig? I created the layout.twig where you are rendering the div container correctly: <div class="container"> {% block content %}{% endblock %} </div> I...
asked by 05.09.2018 / 16:08
0
answers

How to use make call another namespace without using include?

I see developers at all times using the "use" command under the "namespace" command without first using an include. An example is the Medoo library: namespace Medoo; use PDO; use Exception; use PDOException; class Raw { public $map;...
asked by 01.09.2018 / 03:53