Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > Database
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

Database Database problems or need to ask a question? maybe something to do with sql injections or a database software question. Database topics cover MySQL, PostgreSQL, Oracle, SQL Server or anything else related to databases.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-02-2007, 10:58 AM   #1
Eugenio Zinga
 
Eugenio Zinga's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

In the first place excused my English.
I do not succeed to understand as the result of the query with 2 tables
never is of the values mistakes to you while with 1 table the result is
right.
Thanks Eugene

table ART:
------
IDart
01
02
03

table MOV1:
-------
IDart qta
01 100
02 100
03 100
01 100
03 50

query1:
SELECT IDart, SUM(MOV1.qta) as TMOV1
FROM ART
LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
GROUP BY ART.IDart

result query OK:
IDart TMOV1
01 200
02 100
03 150

==================================

table MOV2:
-------
IDart qta
01 10
02 30
03 20
01 10
03 5

query2:
SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
FROM ART
LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
GROUP BY ART.IDart

result query NO OK:
IDart TMOV1 TMOV2
01 8210 ? 10000 ?
02 3200 ? 9300 ?
03 1720 ? 4000 ?


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-02-2007, 10:58 AM   #2
strawberry
 
strawberry's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
> In the first place excused my English.
> I do not succeed to understand as the result of the query with 2 tables
> never is of the values mistakes to you while with 1 table the result is
> right.
> Thanks Eugene
>
> table ART:
> ------
> IDart
> 01
> 02
> 03
>
> table MOV1:
> -------
> IDart qta
> 01 100
> 02 100
> 03 100
> 01 100
> 03 50
>
> query1:
> SELECT IDart, SUM(MOV1.qta) as TMOV1
> FROM ART
> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> GROUP BY ART.IDart
>
> result query OK:
> IDart TMOV1
> 01 200
> 02 100
> 03 150
>
> ==================================
>
> table MOV2:
> -------
> IDart qta
> 01 10
> 02 30
> 03 20
> 01 10
> 03 5
>
> query2:
> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> FROM ART
> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> GROUP BY ART.IDart
>
> result query NO OK:
> IDart TMOV1 TMOV2
> 01 8210 ? 10000 ?
> 02 3200 ? 9300 ?
> 03 1720 ? 4000 ?


Query:

SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
FROM ART
LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
GROUP BY ART.IDart

Result:

IDart TMOV1 TMOV2
1 400 40
2 100 30
3 300 50

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-02-2007, 10:58 AM   #3
Eugenio Zinga
 
Eugenio Zinga's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query


"strawberry" <zac.carey@gmail.com> ha scritto nel messaggio
news:1182505502.442836.295500@c77g2000hse.googlegr oups.com...
> On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
>> In the first place excused my English.
>> I do not succeed to understand as the result of the query with 2 tables
>> never is of the values mistakes to you while with 1 table the result is
>> right.
>> Thanks Eugene
>>
>> table ART:
>> ------
>> IDart
>> 01
>> 02
>> 03
>>
>> table MOV1:
>> -------
>> IDart qta
>> 01 100
>> 02 100
>> 03 100
>> 01 100
>> 03 50
>>
>> query1:
>> SELECT IDart, SUM(MOV1.qta) as TMOV1
>> FROM ART
>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> GROUP BY ART.IDart
>>
>> result query OK:
>> IDart TMOV1
>> 01 200
>> 02 100
>> 03 150
>>
>> ==================================
>>
>> table MOV2:
>> -------
>> IDart qta
>> 01 10
>> 02 30
>> 03 20
>> 01 10
>> 03 5
>>
>> query2:
>> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
>> FROM ART
>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
>> GROUP BY ART.IDart
>>
>> result query NO OK:
>> IDart TMOV1 TMOV2
>> 01 8210 ? 10000 ?
>> 02 3200 ? 9300 ?
>> 03 1720 ? 4000 ?

>
> Query:
>
> SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> FROM ART
> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> GROUP BY ART.IDart
>
> Result:
>
> IDart TMOV1 TMOV2
> 1 400?? 40 ??
> 2 100 30
> 3 300 50
>

Thanks for your answer. How you see the total of code 1 is mistaken like
never?
IDart TMOV1 TMOV2
> 1 200 20 Ok
> 2 100 30
> 3 300 50



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-02-2007, 10:59 AM   #4
Eugenio Zinga
 
Eugenio Zinga's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

strawberry help!!



"Eugenio Zinga" <eugzinga@tin.it> ha scritto nel messaggio
news:467ba496$0$4791$4fafbaef@reader4.news.tin.it. ..
>
> "strawberry" <zac.carey@gmail.com> ha scritto nel messaggio
> news:1182505502.442836.295500@c77g2000hse.googlegr oups.com...
>> On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
>>> In the first place excused my English.
>>> I do not succeed to understand as the result of the query with 2 tables
>>> never is of the values mistakes to you while with 1 table the result is
>>> right.
>>> Thanks Eugene
>>>
>>> table ART:
>>> ------
>>> IDart
>>> 01
>>> 02
>>> 03
>>>
>>> table MOV1:
>>> -------
>>> IDart qta
>>> 01 100
>>> 02 100
>>> 03 100
>>> 01 100
>>> 03 50
>>>
>>> query1:
>>> SELECT IDart, SUM(MOV1.qta) as TMOV1
>>> FROM ART
>>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>>> GROUP BY ART.IDart
>>>
>>> result query OK:
>>> IDart TMOV1
>>> 01 200
>>> 02 100
>>> 03 150
>>>
>>> ==================================
>>>
>>> table MOV2:
>>> -------
>>> IDart qta
>>> 01 10
>>> 02 30
>>> 03 20
>>> 01 10
>>> 03 5
>>>
>>> query2:
>>> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
>>> FROM ART
>>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
>>> GROUP BY ART.IDart
>>>
>>> result query NO OK:
>>> IDart TMOV1 TMOV2
>>> 01 8210 ? 10000 ?
>>> 02 3200 ? 9300 ?
>>> 03 1720 ? 4000 ?

>>
>> Query:
>>
>> SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
>> FROM ART
>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
>> GROUP BY ART.IDart
>>
>> Result:
>>
>> IDart TMOV1 TMOV2
>> 1 400?? 40 ??
>> 2 100 30
>> 3 300 50
>>

> Thanks for your answer. How you see the total of code 1 is mistaken like
> never?
> IDart TMOV1 TMOV2
>> 1 200 20 Ok
>> 2 100 30
>> 3 300 50

>
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-02-2007, 10:59 AM   #5
strawberry
 
strawberry's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

On Jun 25, 7:00 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
> strawberry help!!
>
> "Eugenio Zinga" <eugzi...@tin.it> ha scritto nel messaggionews:467ba496$0$4791$4fafbaef@reader4.new s.tin.it...
>
>
>
> > "strawberry" <zac.ca...@gmail.com> ha scritto nel messaggio
> >news:1182505502.442836.295500@c77g2000hse.googleg roups.com...
> >> On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
> >>> In the first place excused my English.
> >>> I do not succeed to understand as the result of the query with 2 tables
> >>> never is of the values mistakes to you while with 1 table the result is
> >>> right.
> >>> Thanks Eugene

>
> >>> table ART:
> >>> ------
> >>> IDart
> >>> 01
> >>> 02
> >>> 03

>
> >>> table MOV1:
> >>> -------
> >>> IDart qta
> >>> 01 100
> >>> 02 100
> >>> 03 100
> >>> 01 100
> >>> 03 50

>
> >>> query1:
> >>> SELECT IDart, SUM(MOV1.qta) as TMOV1
> >>> FROM ART
> >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> >>> GROUP BY ART.IDart

>
> >>> result query OK:
> >>> IDart TMOV1
> >>> 01 200
> >>> 02 100
> >>> 03 150

>
> >>> ==================================

>
> >>> table MOV2:
> >>> -------
> >>> IDart qta
> >>> 01 10
> >>> 02 30
> >>> 03 20
> >>> 01 10
> >>> 03 5

>
> >>> query2:
> >>> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> >>> FROM ART
> >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> >>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> >>> GROUP BY ART.IDart

>
> >>> result query NO OK:
> >>> IDart TMOV1 TMOV2
> >>> 01 8210 ? 10000 ?
> >>> 02 3200 ? 9300 ?
> >>> 03 1720 ? 4000 ?

>
> >> Query:

>
> >> SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> >> FROM ART
> >> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> >> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> >> GROUP BY ART.IDart

>
> >> Result:

>
> >> IDart TMOV1 TMOV2
> >> 1 400?? 40 ??
> >> 2 100 30
> >> 3 300 50

>
> > Thanks for your answer. How you see the total of code 1 is mistaken like
> > never?
> > IDart TMOV1 TMOV2
> >> 1 200 20 Ok
> >> 2 100 30
> >> 3 300 50


Well here's one way:

SELECT a.art_id,x.TMOV1,y.TMOV2 FROM art a
LEFT JOIN
(SELECT art.art_id, SUM(MOV1.qta) as TMOV1
FROM ART
LEFT JOIN MOV1 ON ART.art_id = MOV1.art_id
GROUP BY ART.art_id)x
ON a.art_id = x.art_id
LEFT JOIN
(SELECT art.art_id, SUM(MOV2.qta) as TMOV2
FROM ART
LEFT JOIN MOV2 ON ART.art_id = MOV2.art_id
GROUP BY ART.art_id)y
ON a.art_id = y.art_id

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-02-2007, 10:59 AM   #6
strawberry
 
strawberry's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

On Jun 25, 10:46 am, strawberry <zac.ca...@gmail.com> wrote:
> On Jun 25, 7:00 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
>
>
>
> > strawberry help!!

>
> > "Eugenio Zinga" <eugzi...@tin.it> ha scritto nel messaggionews:467ba496$0$4791$4fafbaef@reader4.new s.tin.it...

>
> > > "strawberry" <zac.ca...@gmail.com> ha scritto nel messaggio
> > >news:1182505502.442836.295500@c77g2000hse.googleg roups.com...
> > >> On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
> > >>> In the first place excused my English.
> > >>> I do not succeed to understand as the result of the query with 2 tables
> > >>> never is of the values mistakes to you while with 1 table the result is
> > >>> right.
> > >>> Thanks Eugene

>
> > >>> table ART:
> > >>> ------
> > >>> IDart
> > >>> 01
> > >>> 02
> > >>> 03

>
> > >>> table MOV1:
> > >>> -------
> > >>> IDart qta
> > >>> 01 100
> > >>> 02 100
> > >>> 03 100
> > >>> 01 100
> > >>> 03 50

>
> > >>> query1:
> > >>> SELECT IDart, SUM(MOV1.qta) as TMOV1
> > >>> FROM ART
> > >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> > >>> GROUP BY ART.IDart

>
> > >>> result query OK:
> > >>> IDart TMOV1
> > >>> 01 200
> > >>> 02 100
> > >>> 03 150

>
> > >>> ==================================

>
> > >>> table MOV2:
> > >>> -------
> > >>> IDart qta
> > >>> 01 10
> > >>> 02 30
> > >>> 03 20
> > >>> 01 10
> > >>> 03 5

>
> > >>> query2:
> > >>> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> > >>> FROM ART
> > >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> > >>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> > >>> GROUP BY ART.IDart

>
> > >>> result query NO OK:
> > >>> IDart TMOV1 TMOV2
> > >>> 01 8210 ? 10000 ?
> > >>> 02 3200 ? 9300 ?
> > >>> 03 1720 ? 4000 ?

>
> > >> Query:

>
> > >> SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
> > >> FROM ART
> > >> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
> > >> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
> > >> GROUP BY ART.IDart

>
> > >> Result:

>
> > >> IDart TMOV1 TMOV2
> > >> 1 400?? 40 ??
> > >> 2 100 30
> > >> 3 300 50

>
> > > Thanks for your answer. How you see the total of code 1 is mistaken like
> > > never?
> > > IDart TMOV1 TMOV2
> > >> 1 200 20 Ok
> > >> 2 100 30
> > >> 3 300 50

>
> Well here's one way:
>
> SELECT a.art_id,x.TMOV1,y.TMOV2 FROM art a
> LEFT JOIN
> (SELECT art.art_id, SUM(MOV1.qta) as TMOV1
> FROM ART
> LEFT JOIN MOV1 ON ART.art_id = MOV1.art_id
> GROUP BY ART.art_id)x
> ON a.art_id = x.art_id
> LEFT JOIN
> (SELECT art.art_id, SUM(MOV2.qta) as TMOV2
> FROM ART
> LEFT JOIN MOV2 ON ART.art_id = MOV2.art_id
> GROUP BY ART.art_id)y
> ON a.art_id = y.art_id


I guess the real problem is the lack of a PRIMARY KEY on your MOV
tables.

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-02-2007, 10:59 AM   #7
Eugenio Zinga
 
Eugenio Zinga's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Help query

Not there is primary key in tables MOV.
Infinite thanks.
--------------
"strawberry" <zac.carey@gmail.com> ha scritto nel messaggio
news:1182766326.722684.304870@p77g2000hsh.googlegr oups.com...
> On Jun 25, 10:46 am, strawberry <zac.ca...@gmail.com> wrote:
>> On Jun 25, 7:00 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
>>
>>
>>
>> > strawberry help!!

>>
>> > "Eugenio Zinga" <eugzi...@tin.it> ha scritto nel
>> > messaggionews:467ba496$0$4791$4fafbaef@reader4.new s.tin.it...

>>
>> > > "strawberry" <zac.ca...@gmail.com> ha scritto nel messaggio
>> > >news:1182505502.442836.295500@c77g2000hse.googleg roups.com...
>> > >> On Jun 22, 8:52 am, "Eugenio Zinga" <eugzi...@tin.it> wrote:
>> > >>> In the first place excused my English.
>> > >>> I do not succeed to understand as the result of the query with 2
>> > >>> tables
>> > >>> never is of the values mistakes to you while with 1 table the
>> > >>> result is
>> > >>> right.
>> > >>> Thanks Eugene

>>
>> > >>> table ART:
>> > >>> ------
>> > >>> IDart
>> > >>> 01
>> > >>> 02
>> > >>> 03

>>
>> > >>> table MOV1:
>> > >>> -------
>> > >>> IDart qta
>> > >>> 01 100
>> > >>> 02 100
>> > >>> 03 100
>> > >>> 01 100
>> > >>> 03 50

>>
>> > >>> query1:
>> > >>> SELECT IDart, SUM(MOV1.qta) as TMOV1
>> > >>> FROM ART
>> > >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> > >>> GROUP BY ART.IDart

>>
>> > >>> result query OK:
>> > >>> IDart TMOV1
>> > >>> 01 200
>> > >>> 02 100
>> > >>> 03 150

>>
>> > >>> ==================================

>>
>> > >>> table MOV2:
>> > >>> -------
>> > >>> IDart qta
>> > >>> 01 10
>> > >>> 02 30
>> > >>> 03 20
>> > >>> 01 10
>> > >>> 03 5

>>
>> > >>> query2:
>> > >>> SELECT IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
>> > >>> FROM ART
>> > >>> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> > >>> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
>> > >>> GROUP BY ART.IDart

>>
>> > >>> result query NO OK:
>> > >>> IDart TMOV1 TMOV2
>> > >>> 01 8210 ? 10000 ?
>> > >>> 02 3200 ? 9300 ?
>> > >>> 03 1720 ? 4000 ?

>>
>> > >> Query:

>>
>> > >> SELECT ART.IDart, SUM(MOV1.qta) as TMOV1, SUM(MOV2.qta) as TMOV2
>> > >> FROM ART
>> > >> LEFT JOIN MOV1 ON ART.IDart = MOV1.IDart
>> > >> LEFT JOIN MOV2 ON ART.IDart = MOV2.IDart
>> > >> GROUP BY ART.IDart

>>
>> > >> Result:

>>
>> > >> IDart TMOV1 TMOV2
>> > >> 1 400?? 40 ??
>> > >> 2 100 30
>> > >> 3 300 50

>>
>> > > Thanks for your answer. How you see the total of code 1 is mistaken
>> > > like
>> > > never?
>> > > IDart TMOV1 TMOV2
>> > >> 1 200 20 Ok
>> > >> 2 100 30
>> > >> 3 300 50

>>
>> Well here's one way:
>>
>> SELECT a.art_id,x.TMOV1,y.TMOV2 FROM art a
>> LEFT JOIN
>> (SELECT art.art_id, SUM(MOV1.qta) as TMOV1
>> FROM ART
>> LEFT JOIN MOV1 ON ART.art_id = MOV1.art_id
>> GROUP BY ART.art_id)x
>> ON a.art_id = x.art_id
>> LEFT JOIN
>> (SELECT art.art_id, SUM(MOV2.qta) as TMOV2
>> FROM ART
>> LEFT JOIN MOV2 ON ART.art_id = MOV2.art_id
>> GROUP BY ART.art_id)y
>> ON a.art_id = y.art_id

>
> I guess the real problem is the lack of a PRIMARY KEY on your MOV
> tables.
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
info query Eugenio Zinga Database 2 07-01-2007 11:02 PM
***Sql Query problem Thomas 'PointedEars' Lahn Database 0 07-01-2007 6:36 PM
simple (?) query--help Bosconian Database 2 07-01-2007 6:35 PM
Re-using query result Nico Schuyt PHP 3 07-01-2007 4:18 PM
help with query Alex Stuy Database 4 05-31-2007 8:45 PM


Featured Websites




All times are GMT +1. The time now is 12:12 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98