|
本帖最后由 may25 于 2010-10-26 16:52 编辑
Hi ALL
第一次发帖提问,大家帮帮忙哦,一个网页里面需要通过get方法来实现验证码图片的生成,原始的url是http://localhost/generate_security_image.php?sid=2fsdfsadfs82342,这张页面里面只有一些简单的代码:
$img = new generate_securi_mage();
$img->show();
其中的类会根据sid的值生成验证码,
但是我知道ci只能实现这样的url:http://localhost/generate_security_image/2fsdfsadfs82342
但是在浏览器中只能找到http://localhost/generate_security_image/, 如果输入http://localhost/generate_security_image/2fsdfsadfs82342 就会报404错误。
另外如何才能让http://localhost/generate_security_image/知道传过来的参数是sid之后顺利生成验证码呢?
即使设置路由文件中设置$router['securimage_show/:any']="securimage_show?sid=$1"; 也不行,唉 郁闷了。
谢谢大家了。 |
|