p7.1

  • Romuald Fons

    Romuald es el fundador de BIGSEO y consultor internacional especializado en estrategias de marketing e innovación corporativa.

    En el canal de Youtube de Romuald Fons (+ de 126,000 Seguidores) se verán vídeos sobre diversos temas relacionados con el marketing digital. Romuald habla sobre estrategias de posicionamiento web, SEO y muestra casos prácticos y reales de como poder obtener ingresos pasivos a través de internet.​

    @romuald67





  • Gaby Castellanos

    Gaby Castellanos es una de las 50 personas más influyentes del mundo según la revista americana de tecnología y negocios, Fast Company.

    Es la fundadora y directora ejecutiva de socialphilia " karma advertising. Tiene un canal de Youtube y más de 60,000 seguidores en su cuenta de Instagram.

    @gaby77





  • Euge Oller

    Euge Oller es el fundador y director ejecutivo de Emprende Aprendiendo, fundador de Flash Libros y socio fundador de Blend Watches.

    ​Cuenta con más de 407,000 suscriptores en su canal de Youtube & 187,000 seguidores en su cuenta de Instagram. Dónde ayuda a crecer a través del conocimiento y el emprendimiento.

    @euge96





  • Beatriz Navarro

    Beatriz Navarro es la Directora de Marketing y comunicación en Fnac.

    Fue nombrada la mejor Profesional de Marketing 2016 en los Premios Nacionales de Marketing. Fue nombrada una de las 10 mejores Directivas dentro del ranking de las Top 100 mujeres líderes de España, por dos años consecutivos: 2013 y 2014 fue la ex-directora de Marketing de Super-Sol & Starbucks.

    @beatriz48





  • Elena Gómez del Pozuelo

    Elena Gómez del Pozuelo es la presidenta de Adigital, co-fundadora de: Teleciguena, Womelanlia, Incipy, Inesdi, Increnta, Incube, etc.

    Con un largo recorrido, es posiblemente la mayor emprendedora de Internet en España.

    @elena78





  • Elia Guardiola

    La rama en la que está especializada es la del Marketing Emocional y Experiencial como ella misma define. Fundadora de Serendipia.

    Busca conformar un buen storytelling para transmitir lo que siente a quien ve su trabajo y de ese modo conectar con el público y hacer que se sienta identificado con lo que intenta transmitir.

    @elia78





  • David Cantone

    David Cantone es un emprendedor que da formación y asesora a emprendedores y propietarios de negocios sobre temas de marketing online y negocios digitales, ayudándoles a construir negocios rentables, atraer más potenciales clientes y conseguir más ventas de sus productos y servicios.

    David también es uno de los formadores más relevantes y reconocidos en el mundo hispanohablante en temas de alto rendimiento aplicado al éxito personal, recibiendo sus publicaciones más de 1.400.000 visitas al mes. Cuenta con más de 800,000 suscriptores en su canal de Youtube.

    @david89







1 Hey I modified script for php 5. Also I add support server auth. and fixed some little bugs on the script. [EDIT BY danbrown AT php DOT net: Original was written by (unlcuky13 AT gmail DOT com) on 19-APR-09. The following note was included: Below is the my way of using through PHP 5 objecte oriented encapsulation to make thing easier.] 2 Sharing is caring, handles included. 3 Here you have a function that I use to get the content of a URL using cURL: The source comes from this website: http://softontherocks.blogspot.com/2014/11/descargar-el-contenido-de-una-url.html 4 You can use this class for fast entry [EDIT BY danbrown AT php DOT net: Includes a bugfix provided by "Anonymous" on 01-Dec-2008 @ 06:52. Also replaced real URL with example.com as per RFC 2606.] [EDIT BY danbrown AT php DOT net: Includes a bugfix provided by (manuel AT rankone DOT ch) on 24-NOV-09 to properly reference cURL initialization.] 5 This anomali only happen on windows. Server indicates that some variables built by http_build_query() is missing. But myserver give "No ttd GET variable" response This problem fixed by adding optional parameter to make sure that http_build_query() use only '&' as arg separator rather than '&' 6... 7.... 8 If you need to send an array of files using CURL (typical case: POST variable to a REST API), having an array of CURLFiles in the POSTFIELD won't work. You have to set as many variables in your postfield than there are files to send: 9... I wanted to create a script that acted as a bridge between an external server and an internal server, wherein the internal server was not connected to the internet, but had information required by the users connecting to the external server. I hatched the idea to use curl to connect from the external server to the internal server (using request variables to send queries) and return everything (data and headers) returned by the file server. After being driven mad by segmentation faults and crashes because the curl_exec didn't like me having the CURLOPT_HEADERFUNCTION's function directly dumping the header: ... I tried (on a whim) duplicating and trimming the header and passing the duplicate to the header function... Which worked just fine. I don't know if this is just some quirk of PHP4 or my lack of understanding of how the curl and header function works. 10 Hey I modified script for php 5. Also I add support server auth. and fixed some little bugs on the script. 11