C语言写的CGI,有如下语句printf("Set-Cookie:username = %s; path=/\r\n", username);设置一个可以成功,在前端可以读出来。但是如果要设置两个值,我试了以下方法:printf("Set-Cookie:username = %s; password = %s; path=/\r\n", username, password);或者printf("Set-Cookie:username = %s; path=/\r\n", username);printf("Set-Cookie:password = %s; path=/\r\n", password);这两种方法都不行,那该如何设置呢
添加回答
举报
0/150
提交
取消