Year: 2011

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

Actualizar XML

[cc lang=’php’  tab_size=”2″] function updateNode($nodo,$valor,$archivo) { $xmlstr = file_geT_contents($archivo); $xml = new SimpleXMLElement( $xmlstr ); $nodes = $xml->xpath($nodo); $nodes[0][0] = $valor; $xml->asXML($archivo); } [/cc] 

Leer más