<?php
 $sql1 
mysql_connect ($mysql_server$mysql_user$mysql_password) or die ("Keine Verbindung zum Server"); 
            
mysql_select_db ($mysql_database) or die ("Keine Verbindung zur Datenbank"); 
    
$sql2 mysql_connect ($mysql_server$mysql_user$mysql_password) or die ("Keine Verbindung zum Server"); 
            
mysql_select_db ($mysql_database) or die ("Keine Verbindung zur Datenbank"); 
    
# $table - > DB-Tabelle 
     

    
$q1="SELECT id, typ FROM tabelle1 GROUP BY typ ORDER BY typ"
    
mysql_query($q1$sql1); 
    while(
$res mysql_fetch_object($sql1)){ 
        
$q2"SELECT * FROM tabelle1 WHERE typ='".$res->typ."'"
        
mysql_query($q2$sql2); 
        echo 
'<table>'
        echo 
'<tr>'
        echo 
'<td colspan="5">Typ</td>'
        echo 
'</tr>'
        echo 
'<tr>'
        echo 
'<td rowspan="<? echo mysql_num_rows($sql2); ?>">Bild</td>'
        echo 
'</tr>'
        while(
$row mysql_fetch_object($sql2)){ 
            echo 
'<tr>'
            echo 
'<td><? echo $row["Bezeichnung"]; ?></td>'
            echo 
'<td><? echo $row["Watt"]; ?></td>'
            echo 
'<td><? echo $row["Sockel"]; ?></td>'
            echo 
'<td><? echo $row["Bestellnummer"]; ?></td>'
            echo 
'</tr>'
        } 
    } 
?> 

<?php
$sql 
mysql_connect ($mysql_server$mysql_user$mysql_password) or die ("Keine Verbindung zum Server"); 
mysql_select_db ($mysql_database) or die ("Keine Verbindung zur Datenbank");  

$q1="SELECT id, typ FROM tabelle1 GROUP BY typ ORDER BY typ"
$res_idmysql_query($q1$sql); 
while(
$res mysql_fetch_object($res_id)){ 
    
$q2"SELECT * FROM tabelle1 WHERE typ='".$res->typ."'"
    
$res_id2 mysql_query($q2$sql); 
    echo 
'<table>'
    echo 
'<tr>'
    echo 
'<td colspan="5"><? echo $res->typ; ?></td>'
    echo 
'</tr>'
    echo 
'<tr>'
    echo 
'<td rowspan="<? echo mysql_num_rows($res_id2); ?>">Bild</td>'
    echo 
'</tr>'
    while(
$row mysql_fetch_object($res_id2)){ 
        echo 
'<tr>'
        echo 
'<td><? echo $row->Bezeichnung; ?></td>'
        echo 
'<td><? echo $row->Watt; ?></td>'
        echo 
'<td><? echo $row->Sockel; ?></td>'
        echo 
'<td><? echo $row->Bestellnummer; ?></td>'
        echo 
'</tr>'
    } 

?>
Der PC-Problem Thread (page 143) - TranceAddict Forums

Become a part of the TranceAddict community!Frequently Asked Questions - Please read this if you haven'tSearch the forums
TranceAddict Forums > Local Scene Info / Discussion / EDM Event Listings > Europe > Europe - Germany > Der PC-Problem Thread
Pages (341): « 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 [143] 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 »   Last Thread   Next Thread
Share
Author
Thread    Post A Reply
Tom Paris
disco invader



Registered: Aug 2003
Location: trance valley : GTA #146

quote:
Originally posted by McP68
ich danke dir, gleich mal probieren, nachdem ich hier rumhänge


Hab noch ne kleine Korrektur gemacht...


___________________
Musik ist das, was uns zu Menschen macht

Old Post Jul-05-2005 10:26  Germany
Click Here to See the Profile for Tom Paris Click here to Send Tom Paris a Private Message Add Tom Paris to your buddy list Report this Post Reply w/Quote Edit/Delete Message
McP68
_



Registered: Apr 2003
Location:

quote:
Originally posted by Tom Paris
Hab noch ne kleine Korrektur gemacht...

und in sql1 und sql2 kommt rein?

Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 29

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 30

das is die zeile

mysql_query($q1, $sql1);
while($res = mysql_fetch_object($sql1)){

Last edited by McP68 on Jul-05-2005 at 10:43

Old Post Jul-05-2005 10:38 
Click Here to See the Profile for McP68 Click here to Send McP68 a Private Message Add McP68 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
DennisF
up & down and all around



Registered: Nov 2001
Location: Europe

quote:
Originally posted by dEEkAy
besprechen wir später
oki

Old Post Jul-05-2005 10:44 
Click Here to See the Profile for DennisF Click here to Send DennisF a Private Message Visit DennisF's homepage! Add DennisF to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Nachtengel
Supreme tranceaddict



Registered: Nov 2004
Location: Dortmund - GTA # 248

quote:
Originally posted by Stiffmaster
kann mir jemand ne internetseite basteln?


hihi, bloß weil flo auch eine hat

ne im ernst: wäre echt mal ne maßnahme!

Old Post Jul-05-2005 10:50  Germany
Click Here to See the Profile for Nachtengel Click here to Send Nachtengel a Private Message Add Nachtengel to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Tom Paris
disco invader



Registered: Aug 2003
Location: trance valley : GTA #146

quote:
Originally posted by McP68
und in sql1 und sql2 kommt rein?

Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 29

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 30

das is die zeile

mysql_query($q1, $sql1);
while($res = mysql_fetch_object($sql1)){


na die verbindungsdaten solltest du schon wissen. ich dachte dass du wenigestens das kannst...oder hast du gar keine ahnung von php?

Hab meine Lösung mal aktualisiert...Du musst nur die Konstanten oben füllen...oder eben deine Verbindungsdefinitionen nehmen...


___________________
Musik ist das, was uns zu Menschen macht

Last edited by Tom Paris on Jul-05-2005 at 10:57

Old Post Jul-05-2005 10:52  Germany
Click Here to See the Profile for Tom Paris Click here to Send Tom Paris a Private Message Add Tom Paris to your buddy list Report this Post Reply w/Quote Edit/Delete Message
McP68
_



Registered: Apr 2003
Location:

quote:
Originally posted by Tom Paris
na die verbindungsdaten solltest du schon wissen. ich dachte dass du wenigestens das kannst...oder hast du gar keine ahnung von php?


aso, ja das hab ich schon weiter oben

aber zweimal gleich connecten?

Old Post Jul-05-2005 10:53 
Click Here to See the Profile for McP68 Click here to Send McP68 a Private Message Add McP68 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
McP68
_



Registered: Apr 2003
Location:

Warning: mysql_fetch_object(): supplied resource is not a valid MySQL result resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 32

immernoch die erste fetch anweisung

Old Post Jul-05-2005 10:56 
Click Here to See the Profile for McP68 Click here to Send McP68 a Private Message Add McP68 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
McP68
_



Registered: Apr 2003
Location:

PHP:

Old Post Jul-05-2005 10:57 
Click Here to See the Profile for McP68 Click here to Send McP68 a Private Message Add McP68 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Tom Paris
disco invader



Registered: Aug 2003
Location: trance valley : GTA #146

Hab meinen Kram mal korrigiert...Da haben sich n paar Fehlerchen eingeschlichen..

PHP:



Du brauchst auch nur eine Verbindung zur DB.
Ich mach sowas eigentlich mit ner eigenen SQL-Klasse, daher hab ich grad n paar Sachen verwechselt...


___________________
Musik ist das, was uns zu Menschen macht

Last edited by Tom Paris on Jul-05-2005 at 11:20

Old Post Jul-05-2005 11:06  Germany
Click Here to See the Profile for Tom Paris Click here to Send Tom Paris a Private Message Add Tom Paris to your buddy list Report this Post Reply w/Quote Edit/Delete Message
BloodfIower
Comment · Like · Share



Registered: Jun 2002
Location:

quote:
Originally posted by Stiffmaster
kann mir jemand ne internetseite basteln?


und dazu passende portraits und promo bilder?
und PI5 cover-motiv?

Old Post Jul-05-2005 11:09 
Click Here to See the Profile for BloodfIower Click here to Send BloodfIower a Private Message Add BloodfIower to your buddy list Report this Post Reply w/Quote Edit/Delete Message
McP68
_



Registered: Apr 2003
Location:

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 30

Old Post Jul-05-2005 11:10 
Click Here to See the Profile for McP68 Click here to Send McP68 a Private Message Add McP68 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Tom Paris
disco invader



Registered: Aug 2003
Location: trance valley : GTA #146

quote:
Originally posted by McP68
Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\apachefriends\xampp\htdocs\lagerliste\index.php on line 30

Nu aber...siehe letzter Post von mir...


___________________
Musik ist das, was uns zu Menschen macht

Old Post Jul-05-2005 11:12  Germany
Click Here to See the Profile for Tom Paris Click here to Send Tom Paris a Private Message Add Tom Paris to your buddy list Report this Post Reply w/Quote Edit/Delete Message

TranceAddict Forums > Local Scene Info / Discussion / EDM Event Listings > Europe > Europe - Germany > Der PC-Problem Thread
Post New Thread    Post A Reply

Pages (341): « 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 [143] 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 »  
Last Thread   Next Thread
Click here to listen to the sample!Pause playback>>> Remix ID Robbie Rivera <<< [2004] [0]

Click here to listen to the sample!Pause playbackSylver - "Turn the Tide" [2005]

Show Printable Version | Subscribe to this Thread
Forum Jump:

All times are GMT. The time now is 03:12.

Forum Rules:
You may not post new threads
You may not post replies
You may not edit your posts
HTML code is ON
vB code is ON
[IMG] code is ON
 
Search this Thread:

 
Contact Us - return to tranceaddict

Powered by: Trance Music & vBulletin Forums
Copyright ©2000-2024, Jelsoft Enterprises Ltd.
Privacy Statement / DMCA
Support TA!