Skip to content

Instantly share code, notes, and snippets.

@servidorv
Created February 8, 2013 15:26
Show Gist options
  • Save servidorv/4739689 to your computer and use it in GitHub Desktop.
Save servidorv/4739689 to your computer and use it in GitHub Desktop.
<?php
echo "Nombre \t Apellido \t Email \t Teléfono \t Dirección \t Localidad \t Provincia \t País \t Codigo Postal \t Celular \t Empresa \t Suscrito \t Fecha \t";
foreach ($intereses as $interes) {
echo $interes['Raza']['name']."\t";
}
echo " \n ";
?>
<?php foreach ($clients as $client) {
echo $client['Client']['fname'];
echo " \t ".$client['Client']['lname'];
echo " \t ".$client['Client']['email'];
echo " \t ".$client['Client']['phone'];
echo " \t ".$client['Client']['address'];
echo " \t ".$client['Client']['location'];
echo " \t ".$client['Client']['province'];
echo " \t ".$client['Client']['country'];
echo " \t ".$client['Client']['postalcode'];
echo " \t ".$client['Client']['cell'];
echo " \t ".$client['Client']['company'];
echo " \t ".$client['Client']['subcribe'];
echo " \t ".$client['Client']['added'];
foreach ($interests as $interest) {
# code...
}
echo " \t \n";
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment