Jump to content


Photo

Lista de endereços!!!


  • Faça o login para participar
12 replies to this topic

#1 Renan Gonçalves

Renan Gonçalves

    Web Developer

  • Usuários
  • 771 posts
  • Sexo:Masculino
  • Localidade:São Paulo, SP
  • Interesses:Programar PHP, Java (e JSP), Javascript (com Ajax, claro), Ruby (on Rails) !

Posted 08/01/2003, 23:41

Comecei a mexer com mysql faz mais ou menos 1 semana, quando meu primo arrumou ele. Então resolvi fazer uns testes e aprender um pouco mais da linguagem.
E foi por isso que eu resolvi fazer essa Lista de Endereços.
Nesse código esta incluso o config.php e o css.css que é pra não ficar zuado as tabelas.

Aqui vai ele:

config.php
<?php
$host = '';
$banco = '';
$user = '';
$pass = '';
?>
fim do config.php

css.css
body {
font-family: Verdana;
color: black;
font-size: 12px;
}
tr, td {
font-family: Verdana;
color: black;
font-size: 12px;
}
a:link {
font-family: Verdana;
color: black;
font-size: 12px;
text-decoration: none;
}
a:hover {
font-family: Verdana;
color: #4c4c4c;
font-size: 12px;
text-decoration: none;
}
a:visited {
font-family: Verdana;
color: black;
font-size: 12px;
text-decoration: none;
}
fim do css.css

mysql.sql
CREATE TABLE lista(
ID int primary key auto_increment,
nome varchar(100),
endereco varchar(255),
tel varchar(20),
email varchar(100)
);
fim do mysql.sql

index.php
<html>
<head>
  <title>Lista de Endere&ccedil;os</title>
  <link href="css.css" rel="stylesheet" type="text/css">
  <script>
  function excluir(id) {
     if (confirm("Tem certeza que quer deletar?"))
     location.href="index.php?deletarID=" + id;
  }
  </script>
</head>
<body>
<?php
include("config.php");
mysql_select_db("$banco", mysql_connect("$host", "$user", "$pass"));

if ($deletarID) {
        mysql_query("DELETE FROM lista WHERE ID = " . $deletarID);
        print "<script language=JavaScript>
        if (window.parent.location == document.location)
        {
        location.replace('index.php');
        }
        </SCRIPT>";
}

function lista() {
        $consulta = "SELECT * FROM lista ORDER BY nome";
        $resultado = mysql_query($consulta);
        
        $return = '<table width="780" border="0" cellpadding="2" cellspacing="2">';
        $return .= '<tr><td width="150" bgcolor="#efefef" align="center" valign="top">Nome:</td>';
        $return .= '<td width="230" bgcolor="#efefef" align="center" valign="top">Endere&ccedil;o:</td>';
        $return .= '<td width="70" bgcolor="#efefef" align="center" valign="top">Telefone:</td>';
        $return .= '<td width="200" bgcolor="#efefef" align="center" valign="top">E-mail:</td>';
        $return .= '<td width="65" align="center"></td>';
        $return .= '<td width="65" align="center"></td>';
        $return .= '</tr>';

        while ($objeto = mysql_fetch_object($resultado)) {
                $return .= '<tr><td width="150" valign="top">' . $objeto->nome . '</td>';
                $return .= '<td width="230" valign="top">' . $objeto->endereco . '</td>';
                $return .= '<td width="70" valign="top">' . $objeto->tel . '</td>';
                $return .= '<td width="200" valign="top"><a href="mailto: ' . $objeto->email . '">' . $objeto->email . '</td>';
                $return .= '<td width="65" align="center" valign="top"><a href="lista.php?editarID=' . $objeto->ID . '">Editar</a></td>';
                $return .= "<td width=65 align=center valign=top><a href=javascript:excluir(" . $objeto->ID . ");>Deletar</a></td>";
                $return .= '</tr>';
        }
                $return .= '</table>';
        
        print $return;
}
print lista();
print '<table width="380" border="0" cellpadding="2" cellspacing="2">';
print '<tr><td width="150" bgcolor="#efefef" align="center"><font color="write">&nbsp;</font></td>';
print '<td width="230" bgcolor="#efefef" align="center"></td>';
print '</tr><tr>';
print '<form method="post" action="busca.php">';
print '<td width="150"><a href="lista.php">Criar novo Endere&ccedil;o</a></td>';
print '<td width="230"><input name="palavra">';
print '<input type="submit" value="Buscar">';
print '</td></form></tr></table>';

?>
</body>
</html>
fim do index.php

lista.php
<html>
<head>
  <title>Lista de Endere&ccedil;os</title>
  <link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
include("config.php");
mysql_select_db("$banco", mysql_connect("$host", "$user", "$pass"));

$consulta = "SELECT * FROM lista";
$resultado = mysql_query($consulta);

if ($editarID) {
        if ($salvarID) {
                mysql_query("UPDATE lista SET nome = '$nome' WHERE ID = " . $salvarID);
                mysql_query("UPDATE lista SET endereco = '$endereco' WHERE ID = " . $salvarID);
                mysql_query("UPDATE lista SET tel = '$tel' WHERE ID = " . $salvarID);
                mysql_query("UPDATE lista SET email = '$email' WHERE ID = " . $salvarID);
                print "<script language=JavaScript>
                if (window.parent.location == document.location)
                {
                location.replace('index.php');
                }
                </SCRIPT>";
        }
        $consulta = "SELECT * FROM lista WHERE ID = " . $editarID;
        $resultado = mysql_query($consulta);
        $objeto = mysql_fetch_object($resultado);

        $return = '<table width="650" border="0" cellpadding="2" cellspacing="2">';
        $return .= '<tr><td width="150" bgcolor="#EFEFEF" align="center">Nome:</td>';
        $return .= '<td width="230" bgcolor="#EFEFEF" align="center">Endere&ccedil;o:</td>';
        $return .= '<td width="70" bgcolor="#EFEFEF" align="center">Telefone:</td>';
        $return .= '<td width="200" bgcolor="#EFEFEF" align="center">E-mail:</td>';
        $return .= '</tr>';
        $return .= '<form method="post" action="lista.php?editarID=' . $editarID . '&salvarID=' . $editarID  . '">';
        $return .= '<tr><td width="150"><input name="nome" value="' . $objeto->nome . '" size="20"></td>';
        $return .= '<td width="230"><input name="endereco" value="' . $objeto->endereco . '" size="30"></td>';
        $return .= '<td width="70"><input name="tel" value="' . $objeto->tel . '" size="10"></td>';
        $return .= '<td width="200"><input name="email" value="' . $objeto->email . '" size="25"></td>';
        $return .= '</tr>';
        $return .= '<tr><td>';
        $return .= '<input type="submit" value="Salvar Dados">';
        $return .= '</td></tr>';
        $return .= '</table>';
        print $return;
}
if ($criar) {
        mysql_query("INSERT INTO lista(nome, endereco, tel, email) VALUES ('$nome', '$endereco', '$tel', '$email')");
        print "<script language=JavaScript>
        if (window.parent.location == document.location)
        {
        location.replace('index.php');
        }
        </SCRIPT>";
}
elseif (!$editarID && !$salvar) {
        $return = '<table width="650" border="0" cellpadding="2" cellspacing="2">';
        $return .= '<tr><td width="150" bgcolor="#EFEFEF" align="center">Nome:</td>';
        $return .= '<td width="230" bgcolor="#EFEFEF" align="center">Endere&ccedil;o:</td>';
        $return .= '<td width="70" bgcolor="#EFEFEF" align="center">Telefone:</td>';
        $return .= '<td width="200" bgcolor="#EFEFEF" align="center">E-mail:</td>';
        $return .= '</tr>';
        $return .= '<form method="post" action="lista.php?criar=sim">';
        $return .= '<tr><td width="150"><input name="nome" size="20"></td>';
        $return .= '<td width="230"><input name="endereco" size="30"></td>';
        $return .= '<td width="70"><input name="tel" size="10"></td>';
        $return .= '<td width="200"><input name="email" size="25"></td>';
        $return .= '</tr>';
        $return .= '<tr><td>';
        $return .= '<input type="submit" value="Criar Endere&ccedil;o">';
        $return .= '</td></tr>';
        $return .= '</table>';
        print $return;
}
?>
</body>
</html>
fim do lista.php

busca.php
<html>
<head>
  <title>Lista de Endere&ccedil;os</title>
  <link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
include("config.php");
mysql_select_db("$banco", mysql_connect("$host", "$user", "$pass"));

$consulta = "SELECT * FROM lista WHERE nome LIKE '%$palavra%'";
$resultado = mysql_query($consulta);

$return = '<table width="780" border="0" cellpadding="2" cellspacing="2">';
$return .= '<tr><td width="150" bgcolor="#efefef" align="center" valign="top">Nome:</td>';
$return .= '<td width="230" bgcolor="#efefef" align="center" valign="top">Endere&ccedil;o:</td>';
$return .= '<td width="70" bgcolor="#efefef" align="center" valign="top">Telefone:</td>';
$return .= '<td width="200" bgcolor="#efefef" align="center" valign="top">E-mail:</td>';
$return .= '<td width="65" align="center"></td>';
$return .= '<td width="65" align="center"></td>';
$return .= '</tr>';
while ($objeto = mysql_fetch_object($resultado)) {
        $return .= '<tr><td width="150" valign="top">' . $objeto->nome . '</td>';
        $return .= '<td width="230" valign="top">' . $objeto->endereco . '</td>';
        $return .= '<td width="70" valign="top">' . $objeto->tel . '</td>';
        $return .= '<td width="200" valign="top"><a href="mailto: ' . $objeto->email . '">' . $objeto->email . '</td>';
        $return .= '<td width="65" align="center" valign="top"><a href="lista.php?editarID=' . $objeto->ID . '">Editar</a></td>';
        $return .= "<td width=65 align=center valign=top><a href=javascript:excluir(" . $objeto->ID . ");>Deletar</a></td>";
        $return .= '</tr>';
}
$return .= '</table>';

print $return;

?>
</body>
</html>
fim do busca.php



E ai o que acharam???

Renan Gonçalves
renan.saddam@gmail.com
(WebSite / Gmail / orkut / Windows Live! Messenger
)

"Aquele que se define se limita."


#2 Heytor

Heytor
  • Visitantes

Posted 09/01/2003, 01:17

Eu ainda não o testei para ele parece ser em interessante...

#3 JeDaH

JeDaH

    Rammstein!

  • Usuários
  • 490 posts
  • Sexo:Masculino
  • Localidade:São Paulo - SP - ZN

Posted 14/01/2003, 02:55

aqui nao funcionou apareceu so isso...

mysql_select_db("$banco", mysql_connect("$host", "$user", "$pass")); if ($deletarID) { mysql_query("DELETE FROM lista WHERE ID = " . $deletarID); print "


Ein Schrei wird zum Himmel fahren
schneidet sich durch Engelscharen
Vom Wolkendach fällt Federfleisch
auf meine Kindheit mit Gekreisch

Rammstein - Mein Teil

#4 007

007
  • Visitantes

Posted 14/01/2003, 07:36

so to postando aki para falar ke um visitante flooder postou 3 posts scripts "how how how how how how how how how how how how how how how how how how how how how ........" e eu deletei tudo pq tava acabando com a estrutura do fórum..

axo ki o nosso amigo visitante esta com problemas para mexer no forum, depois que ele aprendeu a usar o magnifico "ctrl+C e ctrl+V" ele ficou tao impressionado que veio mostrar pra gente como ele esta esbelto!

lindo visitante, parabens, axo ki logo logo vc aprende a usar ctrl+X e ai vai ver como o computador e impressionante!!

valew,

#5 Renan Gonçalves

Renan Gonçalves

    Web Developer

  • Usuários
  • 771 posts
  • Sexo:Masculino
  • Localidade:São Paulo, SP
  • Interesses:Programar PHP, Java (e JSP), Javascript (com Ajax, claro), Ruby (on Rails) !

Posted 17/01/2003, 23:22

Que visitante é esse 007?

No momento pensei que fosse eu, mas acho que naum, pois já sou veterano no fórum!!


uauhauha

Renan Gonçalves
renan.saddam@gmail.com
(WebSite / Gmail / orkut / Windows Live! Messenger
)

"Aquele que se define se limita."


#6 foxter

foxter

    "Se hoje sou o q sou, é pq tive sorte de não ser você!&

  • Usuários
  • 279 posts
  • Sexo:Não informado
  • Localidade:Sentado Na Cadeira de Frente pro PC

Posted 18/01/2003, 14:41

bom kra... eu ainda n testei pois vou testar quando tiver + tempo... eheheh
mas qndo testar eu posto aqui...
:D
Foxter:

#7 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 29/10/2017, 11:52

Dove Trovare Dapoxetina Prednisolone Tablets Online Levitra Dizionario viagra prescription Online Pahrmacies
Canine Cephalexin Reaction viagra Azimed 250 Purchase
Thyrox 200 Without A Prescription viagra Hydrochlorothiazide France Mastercard Accepted Viagra Online Purcheses Diabetes Propecia Reversible

#8 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 30/10/2017, 14:18

Nolvadex Without Prescription Kamagra 100mg Mail Order Doryx Overseas viagra prescription Zestril Lisinopril 4 Sale Propecia After 10 Years Testosterone Levels
Dutasteride Avolve Bangor Buy Ganeric Viagra Online buy viagra online Propecia Side Effects Health Levitra Quanto Dura L'Effetto Cialis Cheapest
buy accutane in the uk viagra prescription Cialis Soft Tabs For Sale
Cialis Contrareembolso Foros Farmacie On Line Italia Comprare Viagra In Thailandia viagra Buy Generic Tadalis Sx Cialis On Line Italia Albuterol By Mail
Buy Cipro Antibiotic Online viagra online prescription isotretinoin 10mg skin health Georgia Vermox 100 Mg Purchase Flagyl No Prescription

#9 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 31/10/2017, 10:49

Todo Sobre El Viagra buy viagra Levitra Wann Wirkt Best Place To Buy Viagra Kamagra Quick Delivery Uk
Pletal viagra Synthroid Without Prescription In Pa
247 Overnight Pharmacy Canadian cialis Buy Viagra From Egypt Bentyl Medicine Mastercard Accepted With Free Shipping

#10 iapedlok

iapedlok

    Expert

  • Usuários
  • 538 posts
  • Sexo:Feminino
  • Localidade:Balaclava

Posted 31/10/2017, 22:58

Discounts! best beauty buys 2017 progect13.jpg Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked! If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included). buy.png READ MORE Secondary color beads bracelet ( 3.79 $)counter strike global offensive механикиMini Tiger Earrings ( 109.00 $)USAMS car mobile phone holder for iphone Car Air Vent Mount Holder 360 Degree Ratotable Soporte Phone Stand under 6'' phone ( 7.45 $)Imieye 3pcslot 720p onvif p2p wireless ip camera wifi hd 1mp night vision 15m h.264 ir-cut onvif cctv security network ipcam ( 121.38 $)SKYRC MC3000 Smart Bluetooth Charger-89.99 $8A Peruvian Virgin Hair Body Wave 4 Bundles Peruvian Body Wave Hair Bundles Peruvian Body Wave Virgin Hair 100% Human Hair ( 43.00 $)Solid color stylish elastic waist straight leg men's shorts ( 21.97 $)скачать strike global offensiveV shkolnoj programme mozhet poyavitsya novij predmet — kultura zdorovya (Video)Original VKWORLD VK700 Pro Spare Part Leather Protective Case ( $6.07 )3 bundles brazilian virgin hair water wave virgin hair wet and wavy human hair bundles mink brazilian hair weave bundles osa ( 50.00 $)Hot selling 100pcsbag blue strawberry rare fruit vegetable seed bonsai plant home garden free shipping ( 0.99 $)Hot sales women ladies waterproof elegant color lipstick matte smooth lip stick lipgloss long lasting sweet ( 0.56 $)7 inch screen video door phone intercom system night vision intercom doorbell code keypad strike lock switch 1 camera 1 monitor ( 138.56 $) 145bb.jpg
Discounts! worlds best products

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Mink brazilian virgin hair body wave 4 bundles deal brazilian body wave rosa hair products unprocessed human hair weave bundles ( 56.00 $)
Original Elephone ELE Star 80W TC Box Mod 200 - 580F 5 - 80W E Cigarette Mod 25.90$
2015 Newborn Princess Style Baby Girl Clothes Kids Birthday Dress Girls Lace Rompers+Hats Baby Clothing Sets Infant Jumpsuit ( 19.90 $)
Pink Roses Gold Plated Brooch ( 193.00 $)
Online store Happy Pet pet Products. The pet store.
liberty auto игра
Wireless home video door phone intercom doorphone doorbell system, 3.5 inch tft color monitor + 1 camera kit ( 114.48 $)
Black laptop school backpack travel bags men notebook waterproof oxford bag travel backpacks for man 14 15 inch ( 39.02 $)
обувь кеддо магазины +в москве адреса
Promotion 65cm modern lamp designe big bang bedroom light fixtures chandelier pendant lamp lighting white in stock ( 135.83 $)
H222 Yellow and Black Suede Sneaker ( 134.00 $)
Sale colorful Reflective Safety Warning Conspicuity Tape Film Sticker 3M ( 1.79 $)
2016 women lights up led luminous shoes high top glowing casual shoes with new simulation sole charge for men adults neon basket ( 21.76 $)
romantic bear pomade Peel-off Waterproof long lasting Lip Gloss tint baton eosed balm lipsticks Long Lasting Makeup wow lips ( 1.08 $)
Vernee Apollo Lite 5.5 inch 4G+ Phablet Android 6.0 MTK6797 Deca Core 4GB RAM 32GB ROM 16.0MP Main Camera Corning Gorilla Type-C Fingerprint Sensor 258.79$


97bb.png
Discounts! makeup new 2017

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Women messenger bags ladies tote small shoulder bag woman brand leather handbag crossbody bag with scarf lock designer bolsas ( 41.65 $)
Quad4 band lcd smart touch keypad panel wireless pstn sms voice burglar gsm android ios app remote arm alarm security system ( 103.69 $)
Ducare brand makeup brushes 8pcs foundation brush blusher powder eyeshadow blending eyebrow eyeliner lip brushes ( 17.99 $)
WLtoys Q242 - G 5.8G FPV RC Quadcopter-108.00 $
image line fl studio mobile скачать
Charm in hands elegant alligator patent leather women handbag big women's shoulder bags cross lock design lady tote handbag ( 26.80 $)
Zerkalo ne zapoteet Zerkalo v vannoj komnate ne budet…
Cable Knit Wool Blend Mens Hat ( 42.00 $)
Sweet lace design solid color layered one-piece swimwear for women ( 25.79 $)
Brazilian body wave 4bundles brazilian virgin hair im queen hair brazilian body wave,8a mink brazilian human hair weave bundles ( 43.34 $)
cabelo sintetico halo hair extensions piece straight flip in haar extension pieces synthetic weave extensiones hairpiece 22 inch ( 4.58 $)
CONTACT'S Genuine Leather Men Wallets Vintage Famous Brand Design Card Holder Purse Bag Coin Pockets Long Clutch High Quality ( 41.78 $)
shoppinglive первый немецкий телемагазин товар дня
Fashion Lovers Autumn Harajuku Kawaii Printed Sweatshirt Hoodies Women tracksuit Design Long Sleeve Ladies Female Hoodies ( 9.89 $)
Casual flat heel and lace-up design women's sandals ( 28.22 $)


104.jpg
Discounts! best mens hair wax

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Ulefone Power 6050mAh Android 6.0 5.5 inch 4G Phablet FHD 2.5D Screen MTK6753 64bit Octa Core 1.3GHz Fingerprint Scanner 3GB RAM 16GB ROM 5.0MP + 13.0MP Cameras 168.59$
скачать battlefield 1943 через торрент +на русском
5Pcs 2 Way Wooden Dotting Pen Marbleizing Tool Nail Art Dot Dotting Tools #14198 ( 1.99 $)
Malaysian virgin hair weave body wave bundles 3 bundle deals unprocessed Malaysia mink hair wet and wavy human hair peerless ( 67.00 $)
Thorns and dragon 3d print round neck ombre men's tank top ( 19.02 $)
GALAZ GAL-N1159 Glasses-Free 3D Tablet PC 8.4 inch-284.51 $
Frida - Murano Glass Bead Necklace ( 59.00 $)
IMAN Victor 4G Smartphone-229.99 $
Original XiaomI Mi Backpack Urban Life Style Shoulders Bag Rucksack Daypack School Bag Duffel Bag Fits 14 inch Laptop portable ( 79.78 $)
8Pcs Vietnam Red Tiger Balm Back Body Massager Relaxation Herbal Plaster Pain Relief Patch Medical Plaster Ointment Joints C075 ( 1.22 $)
Daisy one c5 polarized army goggles, military sunglasses 4 lens kit, men's desert storm war game tactical glasses sporting ( 17.32 $)
Trendy spaghetti strap solid color asymmetrical women's dress ( 12.44 $)
New fashion pu leather handbag women cross body bag high quality lady messenger bags bolsos mujer casual female shoulder bag ( 24.99 $)
Pro leather distressed white strap unisex sneaker ( 97.36 $) Converse Limited Edition
3 pcsLot Deli 502 super glue Liquid Contact adhesive for paper fabric metal glass stationery office school supplies 6940 ( 6.00 $)


59.jpg
Discounts! get it beauty 2017 products

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Ski snowboard black handbags cross country skiing pole bag Mountain skiing snow board protection backpack ( 3.50 $)
Hot selling! promotion women wallets high qulaity long design lady clutch bag oil wax leather coin purse business card holder ( 27.98 $)
Rose dafrique print silk wrap ( 194.72 $) Christian Lacroix
Light blue and white polkadot cotton slim fit shirt ( 52.42 $) Forzieri
2PCSSet Beauty Matte Liquid Lipsticks 8Colors Lip Gloss Lip Kit Lip Gloss Lipstick Lip Stick Kit Rouge a Levres Liquide Mat p10 ( 1.90 $)
15 11.55cm 2L Multi-Color Bicycle Cycling Bag Bike Top Tube Saddle Bag Bicycle Frame Pannier Bag Rack Bicycle Accessories ( 4.50 $)
BLUBOO XTOUCH 3GB 4G Smartphone-152.54 $
Inleela 2016 most cost-effective backpack new arrival vintage women shoulder bag girls fashion schoolbag high quality women bag ( 27.80 $)
Trendy pointed toe and hollow out design women's pumps ( 30.79 $)
2015 new design h4 led headlight cars high low beam 40w fog light kit led lamp xenon car-styling h4 led bulbs for cars ( 39.99 $)
2pcs Motorcycle Headlight With Switch CREE LED Chip U5 125W 3000LM White 6000K Fog DRL Daytime Running Light Spotlight Led Lamp ( 27.79 $)
Black Logo Pattern Eco Leather Mens Wallet ( 90.00 $)
Casual solid color openwork bow design women's wedge shoes ( 20.63 $)
Arreni â Game of Thrones
HOMTOM HT6 4G Phablet-143.89 $


248.jpg

#11 uapedlok

uapedlok

    24 Horas

  • Usuários
  • 414 posts
  • Sexo:Masculino
  • Localidade:Vladivostok

Posted 01/11/2017, 07:17

Discounts! the best of beauty progect13.jpg Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked! If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included). buy.png READ MORE 20 24 28 Inch aluminum frame universal wheel rolling Carry-Ons luggage travel case new mirror suitcase frosted trolley suitcase ( 139.00 $)5 color motorcycle sticker for yamaha decal motorbike decals Reflective Reflective car styling waterproof moto stickers decorate ( 2.99 $)King, GremMen's hooded solid colorzipper design short sleeve t-shirt ( 11.98 $)counter strike 1.6 скачать бесплатноUnprocessed virgin peruvian full lace wig black women lace front wigs full lace human hair wigs with bangs african american wigs ( 101.00 $)купить аккаунт origin battlefield 1Neon sign for pacman game signboard real glass beer bar pub display restaurant outdoor light signs 1714" vd neon lamps bright ( 105.51 $)8a rosa hair products malaysian body wave 3pcs luvin hair products malaysian virgin hair wonder beauty human hair bundles deals ( 56.39 $)High quality base makeup concealer contour palette 13 5g single color face concealer foundation cream make ( 2.87 $)2016 women summer autumn style casual black dress half sleeve o-neck vintage party sexy dresses plus size clothing ( 7.59 $)Brazilian body wave 3 bundles 8a grade virgin unprocessed human hair weave brazilian virgin hair body wave brazillian body wave ( 29.60 $)Turn-down collar color block waviness stripe print long sleeve men's shirt ( 13.22 $)Stylish straight leg pentagram pattern zipper fly men's shorts ( 15.98 $)птички энгри играть бесплатно 132.jpg
Discounts! which hair gel is best

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
nike sky hi
ангри бердс мультик
Logo detail copper womens ring ( 89.87 $) MM6 Maison Martin Margiela
UMi Z 4G Phablet-290.99 $
Teclast P70 4G Phablet-89.55 $
Stylish round neck plus size splash-ink letters print short sleeve men's t-shirt ( 16.47 $)
1PCS New Professional Soft Makeup Flat Contour Brushes Blush Brush Blend Makeup Comestic essential tools ( 0.99 $)
Gold Plated Austrian Crystal Enamel Flower Jewelry Sets Women African Costume Sapphire Jewelry Maxi Necklace Earring Set PWS0001 ( 4.85 $)
M6 Bluetooth 4.0 Smart Wristband-30.58 $
New Style Hot Sale Girls Shiny Rhinestone Crown Shaped Hair Clip With Ribbon Children Accessories Protective Cute Hair clip ( 1.22 $)
Fashion Women Handbag Solid Patchwork Lady Day Clutches New Fashion Soft Girl Zipper Packet Fashion Female Casual Bags women bag ( 8.20 $)
лада грант чебоксары
045794P Universal Replacement 3.7V 2800mAh Li - polymer Rechargeable Battery ( $4.55 )
2PCS LED Ghost Shadow Light Logo Projector for Audi ( $8.10 )
Malaysian Curly Hair 3 bundles Malaysian Virgin Hair extensions Afro Kinky Curly Hair 7A unprocessed virgin hair curly weave ( 72.20 $)


100.png
Discounts! product review example

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Lupita Fuchsia Fabric and Leather Shoulder Bag ( 141.00 $)
Jack red leather wallet clutch wshoulder strap ( 292.08 $) Jerome Dreyfuss
Arrik Kargill â Game of Thrones
Solid pure silk satin silk tie ( 46.73 $) Forzieri
Es358 fashion simple vintage heart stud earrings wholesales factory direct sales jewelry accessories ( 0.20 $)
домашний магазин каталог товаров леомакс
2016 the new large capacity pvc material college vintage shoulder women's backpack students travel computer leather bag mochilas ( 69.21 $)
ILIFE V7 Super Mute Sweeping Robot Home Vacuum Cleaner Dust Cleaning with 2600mAh Li - battery-151.39 $
Marina 3 - Turquoise Green Murano Glass and Silver Leaf Pendant Necklace ( 60.00 $)
Professional 48 W CCFL LED Lamp Nail Dryer For Nail Gel Polish Curing Nails Lamp Dryers Art Manicure Automatic sensor US EU Plug ( 88.88 $)
Europe and the United States Highway 66 all-match offbeat jewelry ring man personality steel titanium rings SA783 ( 7.74 $)
Manchester u morya
Anti-scratch Original VKWORLD VK700 Pro Tempered Glass Screen Protector Film ( $2.32 )
Online clothing store for martial arts. Free shipping to RUSSIA! - fight-space.ru - clothing for martial arts.
Cheap short 100 human hair wigs straight brazilian virgin hair wigs with baby hair glueless full lace wigs human hair bob wigs ( 133.00 $)


10bb.png
Discounts! beauty buy

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Aiwatch Y6 Smartwatch Phone-19.99 $
sonic +and +the secret rings wii скачать
Fitness american football pants seahawks 3d printed sports leggings yoga pants exercise women running tights sm4l028 ( 12.49 $)
2016 down coat parkas women's winter jackets winter long jacket women high quality warm female thickening warm parka hood jx033 ( 70.84 $)
team fortress 2
JJRC H31 Waterproof Drone ( 28.93 $)
Full Cover White and Black Premium Tempered Glass for iPhone 7 5 5s se 6 6Plus 6S 7 Plus Glass Screen Protector cover case film ( 2.99 $)
Ms Cat Hair Brazilian Body Wave 3pcs Lot 7a Grade Brazilian Virgin Hair Body Wave 100% Virgin Brazilian Human Hair Weave Bundles ( 43.08 $)
7a brazilian virgin hair with closure brazilian straight hair 3 bundles with closure rosa hair products human hair with closure ( 78.00 $)
2017 hot sale autumn winter ladies female casual cotton lapel long sleeve plaid shirt women slim ( 8.60 $)
Brand New Black Eye Mascara Long Eyelash Silicone Brush Curving Lengthening Mascara Waterproof Makeup ( 0.94 $)
резиновая обувь crocs
Tennmak 3.5mm Jack In-ear Earphones with Mic ( $9.99 )
Original Elephone ELE Star 80W TC Box Mod 200 - 580F 5 - 80W E Cigarette Mod 25.90$
Filipino virgin hair straight lace closure with bundles 4 piece nice hair tissage bresilienne 100 cheap human hair bundles ( 84.00 $)


63.jpg
Discounts! top rated skin care products 2017

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
crash +of +the titans wii
ASLING Protective Full Body Case for LG G4 ( $4.82 )
Unprocessed brazilian virgin hair straight 4 bundles mink brazilian hair weave bundles rosa products 8a brazilian straight hair ( 65.00 $)
nike duckboot 17
шкив коленвала 2110 16 клапанов
1 pcs white car bulbs ba9s led reading light t4w automotive interior lamp sourse 6smd 5630 ( 0.90 $)
DS1501WEN+ Y2K 3.3V 28-TSOP DS1501WE 1501 DS1501 1501W DS150 1501WE 1PCSLOT FREE SHIPPING ( 15.40 $)
Deti (Igra prestolov)
2016 top sale loose curly wigs synthetic lace front wigs black with baby hair heat resistant brazilian hair wigs for black women ( 44.80 $)
Backpack Women High Quality Backpacks for Teenage Girls 2016 Fashion Leather Backpack for Travel Mochilas Mujer Women Backpack ( 22.59 $)
Orange Business Card Holder ( 28.00 $)
angry birds star wars 2 андроид
4.1 inch embedded car radio player 4016c car video mp5 players lcd display full viewing angle high-definition car audio player ( 48.62 $)
Bagsmart electronic accessories packing organizers for earphone usb sd card charger data cable travel bag pack suitcase case ( 13.98 $)
Ideafly Grasshopper F210 RC Racing Drone — RTF-355.60 $


22.jpg

#12 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 02/11/2017, 07:51

250 Mg Diamox Buy Paypal Bolsas Kamagra Where Can I Buy Viagra Or Cialis cialis price Retrovir Buy Cheap Celebrex Online
Order Kamagra Ireland Keflex For Uti Emedicine generic viagra Keflex Drug Used For

#13 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 02/11/2017, 10:25

Meds Without Scripts Prograf Vidal Tamoxifene viagra Viagra generique belgique
Cytotec Allaitement Does Alcohol Interact With Amoxicillin isotretinoin delivered on saturday Hawaii viagra prescription Comprar Cialis 24 Horas
Vente Cytotec Cialis Livraison 48h generic viagra Buy Generic Lasix




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq