aus tabelle=>feld

PHP:
    $link = mysql_connect() or
        die("Keine Verbindung möglich");
    mysql_select_db($dbname);

    $result =  mysql_query($link, "SHOW FIELDS FROM ".$table); // Line 7

    while ($row = mysql_fetch_array($result, MYSQL_BOTH)) { // Line 11
        echo $row[Field]." ".$row[Type]."\n";
    }

    mysql_free_result($result); // Line 15

hmm hab das mal ausprobiert theoretisch sollte das doch funktionieren! oder?? :%
Warning: Supplied argument is not a valid MySQL-Link resource in C:\apache\htdocs\ftp\1.php on line 7

Warning: Supplied argument is not a valid MySQL result resource in C:\apache\htdocs\ftp\1.php on line 11

Warning: Supplied argument is not a valid MySQL result resource in C:\apache\htdocs\ftp\1.php on line 15

%)
 
Zuletzt bearbeitet:
hy leutz

hab mal wider zeit gehabt ;)

habe den script fertig *freu*

nehmt ihn euch unter die lupe!!!

und meldet allfällige bug's :-(

www.php.net/mysql_query lesen hilft
nee früher ins bett, das währe mal was ;)

Danke herzlichst allen beteiligten für ihre mithilfe! :-)

GREEZ

N
O
X
 

Anhänge

Zuletzt bearbeitet:
Zurück