如何用php在网页的标题中插入图片

如何用php在网页的标题中插入图片,第1张

1、假设 phplot_img.php 即生成饼状图的程序,直接可以这样子调用:

<img src="phplot_img.php" />

2、在打开页面能看到,就要通过 header 函数发送头信息,告知浏览器要显示的是图片,同时输出图片内容,那么就可以看到了:

$p = new PHPlot(800, 400)

//

$p->DrawGraph()

// 该 DrawGraph() 里调用了 PrintImage() 方法

// 在 PrintImage() 方法里,有这句代码,Header("Content-type: $mime_type")

// 就是告知浏览器接收到的数据是一张图片.

一般不向数据库插入图片 而是插入图片的src 通过src找到图片然后显示。

<?php

session_start()

//array数组中放图片的格式

$uptypes = array("image/jpg","image/jpeg","image/png","image/pjpeg","image/gif","image/bmp","image/x-png")

$files =$_FILES["uppic"]

if($files["size"]>2097152){//图片大小判断

echo "上传图片不能大于2M"

echo "<meta http-equiv='REFRESH' CONTENT='1URL=pic.php'>"

exit

}

$ftype =$files["type"]

if(!in_array($ftype,$uptypes)){ //图片格式判断

echo "上传的图片文件格式不正确"

echo "<meta http-equiv='REFRESH' CONTENT='1URL=pic.php'>"

}

$fname = $files["tmp_name"] //在服务器临时存储名称

$image_info = getimagesize($fname)

$name = $files["name"]

$str_name = pathinfo($name) //以数组的形式返回文件路劲的信息

$extname = strtolower($str_name["extension"])//把字符串改为小写 extensiorn扩展名

$upload_dir = "upload/" //upload文件夹

$file_name = date("YmdHis").rand(1000,9999).".".$extname

$str_file = $upload_dir.$file_name//文件目录

//存入数据库

$con=mysql_connect("localhost","root","")

if(!$con){

die(("数据库连接失败").mysql_error())

}

mysql_select_db("mywork",$con)

$sql="update user set picpath='$str_file' where user_name='$username'" //将图片地址插入数据库mywork

mysql_query($sql,$con)

mysql_close($con)

if(!file_exists($upload_dir)){

mkdir($upload_dir) //创建目录 成功则返回true 失败则返回flase

}

if(!move_uploaded_file($files["tmp_name"],$str_file)){ //将上传的文件移动到新的目录 要移动文件 和文件新目录 成功则返回true

echo "图片上传失败"

echo "<meta http-equiv='REFRESH' CONTENT='1URL=插入失败后希望跳转的页面>"

}

else{

//echo "<img src=".$str_file.">"

echo "图片上传成功"

echo "<meta http-equiv='REFRESH' CONTENT='1URL=插入成功希望挑战的页面>"

}

点图片打开指定网站 只要在图片标签里加一句onclick="window.open("href")"即可 。。。至于贴图片,<img src="url">即可。。。。这和php没关系,都是客户端执行的。。。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11723587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存