Avatar billede martin_shearer Nybegynder
16. december 2006 - 20:26 Der er 10 kommentarer og
1 løsning

hvis 0 intet data ?

Hi

jeg har denne kode:
-----
opentable("Sub Album");
        $rows = dbcount("(album_id)", "photo_albums", groupaccess('album_access'));

    if ($rows) {
       
        $result = dbquery(
            "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
            LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
            WHERE ".groupaccess('album_access')." AND album_sub = '".$album_id."'
            ORDER BY album_order LIMIT $rowstart,".$settings['thumbs_per_page']
                         

        );
        $counter = 0; $r = 0; $k = 1;
        echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n";
        while ($data = dbarray($result)) {
            if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
            echo "<td align='center' valign='top' class='tbl' style='nowrap'>\n";
            echo "<b>".$data['album_title']."</b><br>\n<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>";
            if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
                echo "<img src='".PHOTOS.$data['album_thumb']."' alt='".$data['album_thumb']."' title='".$locale['401']."' border='0'>";
           
            } else {

        echo $locale['402'];
            }
            echo "</a><br>\n<span class='small'>\n";
            echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."<br>\n";
            echo $locale['404']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
            echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."</span><br>\n";
            echo "</td>\n";
            $counter++; $k++;
        }
        echo "</tr>\n</table>\n";
        closetable();
    }
-----

Hvad gør jeg, for at den ikke skal vise en tabel hvis der ikke er valgt nogle sub album til det album ?

i kan se her http://test.mail-net.dk/photogallery.php?album_id=1

da jeg ikke har valgt nogle billeder i den, der hedder sub album, vil jeg bare gerne have at den ikke vises. hvordan gør jeg det ?
Avatar billede martin_shearer Nybegynder
17. december 2006 - 17:41 #1
nogen der kan hjælpe ?
Avatar billede mcardle Nybegynder
18. december 2006 - 06:12 #2
if($sub_album != "0"){
  echo $table;
}

Noget a´la det her... :o)
Avatar billede martin_shearer Nybegynder
18. december 2006 - 15:31 #3
okay, men hvor skal det indsættes henne ?
Avatar billede mcardle Nybegynder
19. december 2006 - 08:30 #4
Jeg kan ikke helt gennemskue din kode, men prøv at smid den udenom, her:

if($sub_album != "0"){
  $counter = 0; $r = 0; $k = 1;
        echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n";
        while ($data = dbarray($result)) {
            if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
            echo "<td align='center' valign='top' class='tbl' style='nowrap'>\n";
            echo "<b>".$data['album_title']."</b><br>\n<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>";
            if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
                echo "<img src='".PHOTOS.$data['album_thumb']."' alt='".$data['album_thumb']."' title='".$locale['401']."' border='0'>";
           
            } else {

        echo $locale['402'];
            }
            echo "</a><br>\n<span class='small'>\n";
            echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."<br>\n";
            echo $locale['404']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
            echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."</span><br>\n";
            echo "</td>\n";
            $counter++; $k++;
        }
        echo "</tr>\n</table>\n";
        closetable();
    }
}
Avatar billede mcardle Nybegynder
19. december 2006 - 08:31 #5
Jeg ved så ikke om din variabel hedder $sub_album, det gør den sikkert ikke...
Avatar billede martin_shearer Nybegynder
19. december 2006 - 14:39 #6
Kan desværre ikke rigtigt få det til at virke, for at være lige mere præcis, så hedder min pågældene variabel album_sub

problemet kan ses her http://test.mail-net.dk/photogallery.php?album_id=2

og hele min kode ser sådan her ud:
----
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------+
| orginal fil
| ændret d. 21/08-06
| tilføjet div ting.
| V. 6.01.4
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."photogallery.php";

define("SAFEMODE", @ini_get("safe_mode") ? true : false);
if (isset($photo_id) && !isNum($photo_id)) fallback(FUSION_SELF);
if (isset($album_id) && !isNum($album_id)) fallback(FUSION_SELF);
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;

if(isset($photo_id)){
    $result = dbquery(
        "SELECT tp.*, ta.*, tu.user_id,user_name, SUM(tr.rating_vote) AS sum_rating, COUNT(tr.rating_item_id) AS count_votes
        FROM ".$db_prefix."photos tp
        LEFT JOIN ".$db_prefix."photo_albums ta USING (album_id)
        LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id
        LEFT JOIN ".$db_prefix."ratings tr ON tr.rating_item_id = tp.photo_id AND tr.rating_type='P'
        WHERE photo_id='$photo_id' GROUP BY tp.photo_id
    ");
    $data = dbarray($result);
    if (!checkgroup($data['album_access'])) {
        fallback(FUSION_SELF);
    } else {
        define("PHOTODIR", PHOTOS.(!SAFEMODE ? "album_".$data['album_id']."/" : ""));
        include INCLUDES."comments_include.php";
        include INCLUDES."ratings_include.php";
        $result=dbquery("UPDATE ".$db_prefix."photos SET photo_views=(photo_views+1) WHERE photo_id='".$photo_id."'");

        $pres = dbquery("SELECT photo_id FROM ".$db_prefix."photos WHERE photo_order='".($data['photo_order']-1)."' AND album_id='".$data['album_id']."'");
        $nres = dbquery("SELECT photo_id FROM ".$db_prefix."photos WHERE photo_order='".($data['photo_order']+1)."' AND album_id='".$data['album_id']."'");
        if (dbrows($pres)) $prev = dbarray($pres);
        if (dbrows($nres)) $next = dbarray($nres);

        opentable($data['photo_title']);
        if ($data['photo_thumb2']) $photo_thumb = PHOTODIR.$data['photo_thumb2'];
        $photo_file = PHOTODIR.$data['photo_filename'];
        $photo_size = @getimagesize($photo_file);

        echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n<td class='tbl2'>\n";
        echo "<a href='".FUSION_SELF."'>".$locale['400']."</a> /\n";
        echo "<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>".$data['album_title']."</a> /\n";
        echo "<a href='".FUSION_SELF."?photo_id=$photo_id'>".$data['photo_title']."</a>\n</td>\n";
        echo "</tr>\n</table>\n";
           
        echo "<br>\n";
       
        echo "<table cellpadding='0' cellspacing='0' width='45%' align='center' border='1' bordercolor='#C0C0C0' style='border-collapse: collapse'>\n<tr>\n";       
        if (isset($prev) || isset($next)) {
            if (isset($prev)) echo "<td width='10%' class='tbl' align='center'><a href='".FUSION_SELF."?photo_id=".$prev['photo_id']."' title='".$locale['451']."'><img border='0' src='themes/Talisman/images/left.gif' width='9' height='11'></a></td>\n";
            echo "<td width='25%' class='tbl2' align='center'><a href='".FUSION_SELF."?album_id=".$data['album_id']."'>Tilbage til Album</a></td>\n";
            if (isset($next)) echo "<td width='10%' class='tbl' align='center'><a href='".FUSION_SELF."?photo_id=".$next['photo_id']."' title='".$locale['452']."'><img border='0' src='themes/Talisman/images/right.gif' width='9' height='11'></a></td>\n";
        }
        echo "</tr>\n</table>\n";
        tablebreak();       
       
               
        if ($data['photo_description']) echo nl2br(parseubb($data['photo_description']))."<br><br>\n";

        echo "<div align='center' style='margin:0px;'>\n";       

                echo "<a href=\"java script:;\" onclick=\"window.open('showphoto.php?photo_id=".$data['photo_id']."','','scrollbars=yes,toolbar=no,status=no,resizable=yes,width=".($photo_size[0]+20).",height=".($photo_size[1]+20)."')\">";


        echo "<img src='".(isset($photo_thumb) ? $photo_thumb : $photo_file)."' alt='".$data['photo_filename']."' title='".$locale['453']."' border='0'></a>\n</div>\n";
        echo "<div align='center' style='margin:5px 0px 5px 0px'>\n";
       
        echo $locale['433'].showdate("shortdate", $data['photo_datestamp'])."<br>\n";
        echo $locale['434']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
        echo $locale['454']."$photo_size[0] x $photo_size[1] ".$locale['455']."<br>\n";
        echo $locale['456'].parsebytesize(filesize($photo_file))."<br>\n";
        echo $locale['436'].dbcount("(comment_id)", "comments", "comment_type='P' AND comment_item_id='".$data['photo_id']."'")."<br>\n";
        echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("<img src='".IMAGES."star.gif' alt='*' style='vertical-align:middle'>", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."<br>\n";
        echo $locale['457'].$data['photo_views']."\n";
        closetable();
        if ($data['photo_allow_comments'] == "1") showcomments("P","photos","photo_id",$photo_id,FUSION_SELF."?photo_id=$photo_id");
        if ($data['photo_allow_ratings']) showratings("P",$photo_id,FUSION_SELF."?photo_id=$photo_id");
    }
} elseif (isset($album_id)) {
    define("PHOTODIR", PHOTOS.(!SAFEMODE ? "album_".$album_id."/" : ""));
    $result = dbquery(
        "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
        LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
        WHERE album_id='$album_id'"
    );
    if (!dbrows($result)) {
        fallback(FUSION_SELF);
    } else {
        $data = dbarray($result);
        if (!checkgroup($data['album_access'])) {
            fallback(FUSION_SELF);
        } else {

    tablebreak();


    opentable($data['album_title']);
            tablebreak();
            echo "<table align='center' cellpadding='0' cellspacing='0' width='90%'>\n<tr>\n";
            echo "<td rowspan='2' align='center' class='tbl'><img src='".PHOTOS.$data['album_thumb']."'></td>\n";
            echo "<td valign='top' width='100%'><div class='tbl' style='font-weight:bold;vertical-align:top'></div>\n";
            echo "<div class='tbl' style='vertical-align:middle'>".nl2br(parseubb($data['album_description']))."</div>\n</td>\n</tr>\n";
            echo "<tr>\n<td valign='bottom' width='100%'>\n<div class='tbl' style='vertical-align:bottom'><hr>\n";
            if ($rows) {
                $pdata = dbarray(dbquery("SELECT tp.*, tu.user_id,user_name FROM ".$db_prefix."photos tp LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id WHERE album_id='$album_id' ORDER BY photo_datestamp DESC LIMIT 1"));
                echo $locale['422']."<b>$rows</b><br>\n";
                echo $locale['423']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$pdata['user_name']."</a>".$locale['424'].showdate("longdate", $pdata['photo_datestamp'])."\n";
            } else {
                echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")." - Lagt op af: <a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a> - dato: ".showdate("shortdate", $data['album_datestamp'])."\n";
            }
            echo "</div>\n</td>\n</tr>\n</table>";
            tablebreak();
            closetable();
            tablebreak();



       
        opentable("Sub Album");
        $rows = dbcount("(album_id)", "photo_albums", groupaccess('album_access'));

    if ($rows) {
       
        $result = dbquery(
            "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
            LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
            WHERE ".groupaccess('album_access')." AND album_sub = '".$album_id."'
            ORDER BY album_order LIMIT $rowstart,".$settings['thumbs_per_page'] );


        $counter = 0; $r = 0; $k = 1;
        echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n";
        while ($data = dbarray($result)) {
            if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
            echo "<td align='center' valign='top' class='tbl' style='nowrap'>\n";
            echo "<b>".$data['album_title']."</b><br>\n<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>";
            if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
                echo "<img src='".PHOTOS.$data['album_thumb']."' alt='".$data['album_thumb']."' title='".$locale['401']."' border='0'>";
           
            }
       
                else {

        echo $locale['402'];
            }
            echo "</a><br>\n<span class='small'>\n";
            echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."<br>\n";
            echo $locale['404']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
            echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."</span><br>\n";
            echo "</td>\n";
            $counter++; $k++;
        }
        echo "</tr>\n</table>\n";
        closetable();
    }
   

    $result = dbquery(
        "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
        LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
        WHERE album_id='$album_id'"
    );
    $data = dbarray($result);

            $rows = dbcount("(photo_id)", "photos", "album_id='$album_id'");
           

            if ($rows) {
                tablebreak();
                opentable($data['album_title']);
                $result = dbquery(
                    "SELECT tp.*, tu.user_id,user_name, SUM(tr.rating_vote) AS sum_rating, COUNT(tr.rating_item_id) AS count_votes
                    FROM ".$db_prefix."photos tp
                    LEFT JOIN ".$db_prefix."users tu ON tp.photo_user=tu.user_id
                    LEFT JOIN ".$db_prefix."ratings tr ON tr.rating_item_id = tp.photo_id AND tr.rating_type='P'
                    WHERE album_id=$album_id GROUP BY photo_id ORDER BY photo_order LIMIT $rowstart,".$settings['thumbs_per_page']
                );
                $counter = 0;
                echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n<td class='tbl2'>\n";
                echo "<a href='".FUSION_SELF."'>".$locale['400']."</a> /\n";
                echo "<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>".$data['album_title']."</a>\n";
                echo "</td>\n</tr>\n</table>\n";
                tablebreak();
                echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n";
                while ($data = dbarray($result)) {
                    if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
                    echo "<td align='center' valign='top' class='tbl' style='nowrap'>\n";
                    echo "<b>".$data['photo_title']."</b><br>\n<a href='".FUSION_SELF."?photo_id=".$data['photo_id']."'>";
                    if ($data['photo_thumb1'] && file_exists(PHOTODIR.$data['photo_thumb1'])){
                        echo "<img src='".PHOTODIR.$data['photo_thumb1']."' alt='".$data['photo_thumb1']."' title='".$locale['431']."' border='20'>";
                    } else {
                        echo $locale['432'];
                    }
                    echo "</a><br>\n<span class='small'>\n";
                    echo $locale['433'].showdate("shortdate", $data['photo_datestamp'])."<br>\n";
                   
                    echo $locale['436'].dbcount("(comment_id)", "comments", "comment_type='P' AND comment_item_id='".$data['photo_id']."'")."<br>\n";
                    echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("<img src='".IMAGES."star.gif' alt='*' style='vertical-align:middle'>", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."<br>\n";
                    echo $locale['435'].$data['photo_views']."</span><br>\n";
                    echo "</td>\n";
                    $counter++;
                }
                echo "</tr>\n</table>\n";
                closetable();
            }
            if ($rows > $settings['thumbs_per_page']) echo "<div align='center' style='margin-top:5px;'>\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3,FUSION_SELF."?album_id=$album_id&amp;")."\n</div>\n";
        }

    }
} else {

       
   
    tablebreak();
   
   
   
    echo "<br />";

    opentable($locale['400']);
    $rows = dbcount("(album_id)", "photo_albums", groupaccess('album_access'));
    if ($rows) {
        $result = dbquery(
            "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
            LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
            WHERE ".groupaccess('album_access')." AND album_sub = '0'
            ORDER BY album_order
            LIMIT $rowstart,".$settings['thumbs_per_page']
        );
        $counter = 0; $r = 0; $k = 1;

        echo "<table cellpadding='0' cellspacing='1' width='100%' align='center' valign='top' border='0'>\n<tr>\n";


        while ($data = dbarray($result)) {
            if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
            echo "<td align='center' valign='top' width='33%' class='tbl' style='nowrap'>\n";
           



        echo "<br>\n<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>";
            if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
                echo "<img src='".PHOTOS.$data['album_thumb']."' alt='".$data['album_thumb']."' title='".$locale['401']."' border='0'>";
            } else {
                echo $locale['402'];
            }
            echo "</a><br><br><b>".$data['album_title']."</b><br>\n<span class='small'>\n";
            echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."<br>\n";
            echo $locale['404']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
            echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."</span><br>\n";
            echo "</td>\n";
            $counter++; $k++;
        }
        echo "</tr>\n</table>\n";
        closetable();
        if ($rows > $settings['thumbs_per_page']) echo "<div align='center' style='margin-top:5px;'>\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3)."\n</div>\n";
    }else{
        echo "<center><br>".$locale['406']."<br><br></center>\n";
        closetable();
    }

    echo "<br />";
   

    tablebreak();
}

require "side_right.php";
require "footer.php";
?>
---

noget du kan hjælpe med at fixe, det vil være kanon
Avatar billede mcardle Nybegynder
20. december 2006 - 00:22 #7
Kald mig newbie, men jeg kan ikke finde dine funktioner... Jeg ved ikke lige hvordan jeg hjælper dig... sorry :o(
Avatar billede martin_shearer Nybegynder
20. december 2006 - 11:06 #8
snakker vi om de funktioner der drejer sig om sub album ?

evt en andne der kan hjælpe ?
Avatar billede mcardle Nybegynder
20. december 2006 - 19:33 #9
ja... Der bliver kaldt til funktionen, men jeg kan ikke finde den.
Avatar billede martin_shearer Nybegynder
20. december 2006 - 20:35 #10
tror det må være den her

else {
            opentable("Sub Categories");
    $rows = dbcount("(album_id)", "photo_albums", groupaccess('album_access'));
    if ($rows) {
        $result = dbquery(
            "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
            LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
            WHERE ".groupaccess('album_access')." AND album_sub = '".$album_id."'
            ORDER BY album_order
            LIMIT $rowstart,".$settings['thumbs_per_page']
        );
        $counter = 0; $r = 0; $k = 1;
        echo "<table cellpadding='0' cellspacing='1' width='100%'>\n<tr>\n";
        while ($data = dbarray($result)) {
            if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) echo "</tr>\n<tr>\n";
            echo "<td align='center' valign='top' class='tbl' style='white-space:nowrap'>\n";
            echo "<b>".$data['album_title']."</b><br><br>\n<a href='".FUSION_SELF."?album_id=".$data['album_id']."'>";
            if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
                echo "<img src='".PHOTOS.$data['album_thumb']."' alt='".$data['album_thumb']."' title='".$locale['401']."' border='0'>";
            } else {
                echo $locale['402'];
            }
            echo "</a><br><br>\n<span class='small'>\n";
            echo $locale['403'].showdate("shortdate", $data['album_datestamp'])."<br>\n";
            echo $locale['404']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a><br>\n";
            echo $locale['405'].dbcount("(photo_id)", "photos", "album_id='".$data['album_id']."'")."</span><br>\n";
            echo "</td>\n";
            $counter++; $k++;
        }
        echo "</tr>\n</table>\n";
        closetable();
        if ($rows > $settings['thumbs_per_page']) echo "<div align='center' style='margin-top:5px;'>\n".makePageNav($rowstart,$settings['thumbs_per_page'],$rows,3)."\n</div>\n";
    }else{
        echo "<center><br>".$locale['406']."<br><br></center>\n";
        closetable();
    }
    tablebreak();
    $result = dbquery(
        "SELECT ta.*, tu.user_id,user_name FROM ".$db_prefix."photo_albums ta
        LEFT JOIN ".$db_prefix."users tu ON ta.album_user=tu.user_id
        WHERE album_id='$album_id'"
    );
    $data = dbarray($result);
Avatar billede martin_shearer Nybegynder
22. december 2006 - 18:40 #11
lukket. ingen brugbar løsning.
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester