Bajar archivos con CURL PHP

$url = "http://soyprogramador.liz.mx/wp-content/uploads/2011/11/phplogo128.png"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); $output = curl_exec($ch); //Guardamos la imagen en un archivo $fh = fopen('logo_php.png', 'w'); […]

Leer más

Mensajes flash Kumbia

Mensajes en kumbiaPHP [cc lang=’php’ ] flash::show(‘cuidado’,’Kumbia puede ser adictivo.’); flash::error(‘Test de flash::error’); flash::notice(‘Test de flash::notice’); flash::success(‘Test de flash::success’); flash::warning(‘Test de flash::warning’); flash::interactive(‘Test de flash::interactive’); […]

Leer más