• PHP常见问题


    简介:这是PHP常见问题的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。

    class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=326436' scrolling='no'>
    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;
    ?>
    首先运行1.php,然后运行2.php,页面应该出现test

    错误提示:Cannot send session cookie - headers already sent by ...

    出现该错误是页面中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>

    “PHP常见问题”的更多相关文章 》

    爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

    http://biancheng.dnbcw.info/php/326436.html pageNo:13
  • 相关阅读:
    c++STL容器之deque容器
    c++STL容器之vector容器
    c++STL容器之string容器
    c++之STL基本认识
    c++之类模板案例
    c++之类模板和友元
    c++之类模板分文件编写
    c++之类模板成员函数的类外实现
    c++类模板与继承
    c++之类模板对象作函数参数
  • 原文地址:https://www.cnblogs.com/ooooo/p/2252327.html
Copyright © 2020-2023  润新知