Gracias al usuario jelcaf
git push origin $rama_actual
git reset --HARD $SHA1
$query = "SELECT * from ejemplo"; | |
$resultGeneral = $this->db->query($query); | |
$resultGeneral->setFetchMode(\Phalcon\Db::FETCH_ASSOC); | |
$resultGeneral = $resultGeneral->fetchAll($resultGeneral); |
<?php | |
use Phalcon\DI\FactoryDefault; | |
class Empresa extends \Phalcon\Mvc\Model | |
{ | |
public static function getall(){ | |
$query = "SELECT * from empresa"; | |
$db = self::getConnection(); | |
return $db->fetchAll($query, Phalcon\Db::FETCH_ASSOC); | |
} |
------------------- SOLVED -------------------------- | |
You need to use app.use(multer({dest:'./uploads/'})) in the form of one of these: | |
app.use(multer({dest:'./uploads/'}).single(...)); | |
app.use(multer({dest:'./uploads/'}).array(...)); | |
app.use(multer({dest:'./uploads/'}).fields(...)); | |
ie: | |
app.use(multer({dest:'./uploads/'}).single('file')); |
include_once "phpmailer/class.phpmailer.php"; | |
include_once "phpmailer/class.smtp.php"; | |
public function sendmail($subject,$_mensaje,$to,$sucursal,$ruta){ | |
$mail = new PHPMailer(); | |
$mail->IsSMTP(); | |
$mail->SMTPAuth = true; | |
$mail->SMTPSecure = "tls"; | |
$mail->Host = "smtp.gmail.com"; | |
$mail->Port = 587; |
Si ha modificado un archivo que también tiene modificaciones en el repositorio remoto pero no lo ha hecho un commit.
Que necesito hacer...
Depende de lo que realmente quieras:
function basic( callback ){ | |
console.log( 'do something here' ); | |
var result = 'i am the result of `do something` to be past to the callback'; | |
// if callback exist execute it | |
callback && callback( result ); | |
} | |
function callbacks_with_call( arg1, arg2, callback ){ |
public function test(){ | |
$vector = ["hola", "como", "estan"]; | |
$this->test2($vector, function(){ | |
echo "soy un mensaje desde la funcion"; | |
},"el mensaje de arriba es el chido"); | |
} | |
public function test2($arr, $response, $mensaje){ | |
print_r($arr); | |
$response(); |
// Crea el evento para escuchar | |
$( "#id_ejemplo" ).on( "valido", function( event, mnsg ) { | |
console.log(mnsg); | |
}); | |
En otro archivo ó en el mismo despachas el evento | |
$( "#id_ejemplo" ).trigger( "valido", "ya termino de subir el archivo" ); |