如何使用php从数据库(基于用户id)获取图像url并将其显示为图像。
下面的代码显示一个php脚本进入数据库,检查特定用户(使用上面链接中的id )是否存在,然后从该用户的行中获取图像url。
<?php
//connect to database
include ("connect.php");
//Get the values
$id = mysql_real_escape_string($_GET['id']);
//get the image url
$result = mysql
我有一个用户注册表在PHP .I把验证码图像检查在页面上。我这样使用它
<img src="captcha.php" alt="Enter this text in the adjacent text box" id="imgCaptcha" />
在我的javascript中,我将使用在图像(从captcha.php页面)中生成的相同数字来验证这一点。这个数字也是在会话变量中设置的。现在我想从我的javascript重新加载图像到另一个图像,如果验证.Is失败,有什么方法可以做到吗?
在我的captcha.php页面中,我随机创建了
下面是我的captcha.php脚本:(它创建一个图像)
// creating a image in this script and set its value on the session
另外,我在contact_us.php文件中有一个<img>,用于显示captcha图像:
<img src="http://localhost/captcha.php" class="captcha_pic" alt="Captcha">
此外,我还有一个ajax代码,用于在contact_us.js中对该表单进行子处理(此文件被
现在,我有一个页面,它获取目录中的每个图像并创建一个新链接。我也想创建一个基于该目录中的每个图像的新页面。我是php的新手,所以我不确定最好的方法是什么。
我的当前页面有以下代码:
//pull each image from directory and display img+name+create link
<?php
$dirname = "img/portfolio/";
$images = glob($dirname."*.jpg");
foreach($images as $ima
我在创建新页面时使用了相同的代码。在预览时间内,图像显示得很完美,但是图像在发布后就被破坏了。我已经附加了代码和打印屏幕预览和发布模式。是否因为包含的图像是php文件而出现问题?请参考wordpress链接,因为这里不能附加超过2。谢谢帮助。
我在Wordpress:上的问题帖子
<html>
<h3>This is where I want to display my graph</h3>
<img src="Example1.php" />
</html>
我需要上传一个php文件来生成一个图形(图像)。添