国产毛片午夜福利,国产黄网,国产亚洲天堂,97国产精品

  •  
    PHP常見問題
    發(fā)布時(shí)間:2008-05-16   瀏覽次數(shù):1183079

    PHP常見問題

    1.配置php.ini,修改session.save_path
    如:session.save_path = d:/developer/php/temp 或 /tmp

    2.程序
    1.php
    <?
    session_start();
    $var1 = "test";
    session_register("var1");
    ?>
    2.php
    <?
    session_start();
    echo $var1;
    ?>
    首先運(yùn)行1.php,然后運(yùn)行2.php,頁面應(yīng)該出現(xiàn)test

    錯(cuò)誤提示:Cannot send session cookie - headers already sent by ...

    出現(xiàn)該錯(cuò)誤是頁面中session_start();語句前存在輸出語句
    如下例:
    <html>
    <?
    session_start();
    $var1 = "test";
    session_register("var1");
    ?>
    <body>
    </body>
    </html>

    將<html>放到后面即可

    修改php.ini
    upload_tmp_dir=d:/temp 或 /tmp

    upload.php
    ====================================
    <html>
    <head>
    <title>PHP Upload</title>
    <meta http-equiv="Content-Type" content="text/html; charset=??????">
    </head>

    <body>
    <?
    if ($upload){

    $real_path = $userfile_name;
    if (file_exists($real_path)){
    unlink($real_path);
    }
    if (!@copy($userfile,$real_path))
    $upload_flag = false;
    else
    $upload_flag = true;
    }
    ?>
    <form name="frmUpload" action="upload.php" enctype="multipart/form-data" method="post">
    <table border=0 cellspacing=0 cellpadding=4>
    <tr><td>

    <input type="hidden" name="MAX_FILE_SIZE" value="1048576">
    <td>
    <input type="file" name="userfile" size="40">
    <input type="submit" name="upload" value=" 上載 ">

    </td></tr>
    </table>
    </form>

    </body>
    </html>

    立即預(yù)約