Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Which is better?

  1. #11
    Join Date
    Dec 2004
    Posts
    7

    Default

    I'm start with Dreamweaver, yes it is good editor, but if you are working with flash... that is all.
    Front Page is most easy to editing.
    First plus is more readability source HTML code(color, font, etc).
    Second plus is more simple and more comfortably and quick site preview.
    That's why i use Front Page.

  2. #12
    Join Date
    Oct 2004
    Location
    Malaysia,
    Posts
    321

    Default

    anyway,
    who can tell me why
    Front Page's
    web components
    didn't work here?
    for example,
    my counter here...
    i can just see [My counter]
    in the location i put the web component....
    any one know why??

  3. #13
    Join Date
    Dec 2004
    Posts
    7

    Default

    Quote Originally Posted by syhs89
    anyway,
    who can tell me why
    Front Page's
    web components
    didn't work here?
    for example,
    my counter here...
    i can just see [My counter]
    in the location i put the web component....
    any one know why??
    make counter with php gd lib. Front Page components(include counters) - sux :)
    Here is code. Sorry, but comments in Russian :D If you don't understand anything, i can translate :)

    ----- file: counter.php ------- use [img]counter.php[/img]
    Code:
    <?
    $dat_file="includes/counter/counter.dat"; // Файл счетчика
    $log_file="includes/counter/counter.log"; // Файл списка IP
    // Открывем файл счетчика и считываем текущий счет
    // в переменную $count
    $f=fopen($dat_file,"r");
    $count=fgets($f,100);
    fclose($f);
    
    $count=ereg_replace(" ","",$count); // Удаляем символ конца строки
    $count++; // Увеличиваем счетчик
    // Записываем данные обратно в файл
    $f=fopen($dat_file,"w");
    fputs($f,"$count ");
    fclose($f);
    
    // Создаем новое изображение из файла
    $im = ImageCreateFromPNG('images/counter.png');
    // Назначаем черный цвет
    $black = ImagecolorAllocate($im,0,0,0);
    // Выводим счет на изображение
    Imagestring($im,1,5,20,$count,$black);
    // Выводим изображение в стандартный поток вывода
    Header("Content-type: image/png");
    ImagePng($im);
    
    // Записываем IP посетителя
    $f=fopen($log_file,"a+");
    $ip=getenv("REMOTE_ADDR");
    fputs($f,"$ip ");
    fclose($f);
    ?>

  4. #14
    Join Date
    Dec 2004
    Location
    united states
    Posts
    254

    Default

    Quote Originally Posted by alexandercam.bizhat.com
    I'm start with Dreamweaver, yes it is good editor, but if you are working with flash... that is all.
    Front Page is most easy to editing.
    First plus is more readability source HTML code(color, font, etc).
    Second plus is more simple and more comfortably and quick site preview.
    That's why i use Front Page.
    well duh, watch catches the most eyes? animation & flash.

  5. #15
    Join Date
    Dec 2004
    Posts
    7

    Default

    Quote Originally Posted by startingline
    well duh, watch catches the most eyes? animation & flash.
    Eyes, yes. But content, usability, functionality is most important. Is it?
    Site with flash & animation is heavy. Long loading time is annoy users. That's why i not prefer it. (IMHO)

  6. #16
    Join Date
    Dec 2004
    Posts
    15

    Default

    frontpage sucks. i use dreamweaver that's much better.

  7. #17
    Join Date
    Dec 2004
    Posts
    4

    Default

    I am building a forum which use phpbb , but i'm only a newbie so that more prob i can solve
    can u show me a free host support: FTP, PHP, MySQL database and a free domain ? thank u so much

  8. #18
    Join Date
    Dec 2004
    Posts
    4

    Default

    Ah! i forgot. Can everybody tell me a website to download phpBB, vBulletin, invisionboard, Dreamweaver or frontpage?

  9. #19
    Join Date
    Dec 2004
    Posts
    4

    Default

    why nobody help me?
    Plzzzzzzzzzz, i need it very much
    Help me?

  10. #20
    Join Date
    Oct 2004
    Location
    Malaysia,
    Posts
    321

    Default

    www.phpbb.com
    www.vBulletin.com
    www.invisionboard.com
    dreamweaver @
    www.macromedia.com
    frontpage :
    buy it your self!
    in any cd shop
    normally microsoft office!!
    for the things you download like dreamweaver,
    find the serial for full version at
    http://crack-locator.com
    or
    www.crackzplanet.com

    &
    please stop posting here!
    post a new post instead
    see the title?
    Which is better?
    out topic!!

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •