利用PHP表单做一个简历模块

<!DOCTYPE HTML>

<html>

<body>

头像部分:

        <?php

        header('Content-type:text/html;charset=utf-8');

        $info=array('id'=>1);

        echo '<pre>';

        echo '</pre>';

        if(!empty($_FILES['pic'])){

            $pic_info=$_FILES['pic'];

            if($pic_info['error']>0){

                $error_msg='上传错误:';

                echo $error_msg;

                return false;

            }

            //使用用户ID为上传文件命名

            $new_file=$info['id'].'.jpg';

            //设置上传文件保存路径

            $filename='./'.$new_file;

            //头像上传的临时目录成功,将其保存到脚本所在目录下的img文件夹中

            if(!move_uploaded_file($pic_info['tmp_name'],$filename)){

                echo '头像上传失败';

                return false;

            }

        }

        ?>

action 指向你所需要打开的另一个网页

        <form action="6.2.php" method="post" enctype="multipart/form-data">

            <h3>编辑用户头像</h3>

            <p>现有头像:</p><img src="<?php echo './'.$info['id'].'.jpg?rand='.rand() ;?>"/><br>

  • 9
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值