donglong2856 2013-04-17 16:16
浏览 68

检索图像文件中的PHP会话集

I have a HTML form that is sent to a PHP page to process. I need to add a captcha to the form. I cannot change the HTML page to PHP and so have set a session in a captcha.php page which outputs as an image. When the page loads the session var is set but I cannot retrieve this session in the process PHP page, the session is empty. Can anyone assist?

Code that sets session in the captcha.php:

session_start(); // start a session
$image = imagecreate(50, 20); //create blank image (width, height)
$bgcolor = imagecolorallocate($image, 0, 0, 0); //add background color with RGB.
$textcolor = imagecolorallocate($image, 255, 255, 255); //add text/code color with RGB.
$code = rand(1000, 9999); //create a random number between 1000 and 9999
$_SESSION['code'] = $code; //add the random number to session 'code'
imagestring($image, 10, 8, 3, $_SESSION['code'], $textcolor); //create image with all the settings above.
header ("Content-type: image/png"); // define image type
imagepng($image); //display image as PNG

PHP process page:

session_start();

print_r($_SESSION); 

Can anyone assist?

  • 写回答

1条回答 默认 最新

  • dsnw2651 2013-04-17 16:19
    关注

    Try

    print_r($_SESSION['code']); 
    
    评论

报告相同问题?

悬赏问题

  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启