I am using the programmed windows tasks to execute a PHP file every X time, the thing is that when executing the program screen is put and then I want it to be in the background ...
The first task I did was this:
C:\xampp\php\php.exe -f c:/xam...
I have problems with the child class constructors. In this case I have an abstract ACCOUNTS class. From it inherits CURRENT ACCOUNT and in turn it inherits ACCOUNTNOWABILITY . When wanting instances CURRENT ACCOUNT AND ACCOUNT CONVERTIBILIT...
I'm doing an inner join of 3 tables and it does not work ... with 2 tables it's all good .. when I add the third table it does not show me anything.
<?php
try{
require_once('include/funciones/db_conexion.php');...
I have a problem when I want to download a file, in this case Excel. I found the code on the Internet, when I paste it I get an error in the header .
I've searched for other codes, but apparently they still have problems in the header.
It...
I currently have an application that sends emails through phpmailer .
The problem is that it only sends emails that have the domain of my company.
When there is an email that is gmail domain, hotmail or another domain, it does not sen...
the following php code that generates two arrays
<?php
//los datos salen de una tabla mysql
$last_year_sales = [2589, 2589, 1478, 2587, 7852, 9632];
$current_year_sales = [1250, 1480, 1156, 3589, 7521, 9632];
//enviar...
I have the following code
<?php
if(!$_GET){
header('Location:blog.php?pagina=1');
}
?>
and it gives me the following error:
Warning: Can not modify header in...
I have been developing a project with php, but I am currently in a problem that is my php files of views have linked many css and js files, but as I am calling them from a router those relative paths are lost, I know that a solution It would be...