我有这个脚本,它有一个登录用户,因此用户只能使用他的用户名/密码登录!
一切正常,唯一的问题是,在我使用cURL功能的页面中,一旦我离开那个页面并转移到另一个页面,它将不再识别用户会话..
这是cURL文件代码:
<?php session_start();
require_once('db.php');
include('functions.php');
checkLogin('1');
$query = 'SELECT * FROM users WHERE ID="'.$_SESSION['user_id'].'"';
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
$id_user=$row['user_id'];
$phone=$row['phone'];
$name=$row['first_name'];
}
?>
<?php
if ($points == 250) {
$b = time ();
$date1 =date( "Y-m-d;h:i:s" , mktime(date("h")+6, date("i"), date("s"), date("m") , date("d"), date("Y")));
$str_time = "";
$str_msg = "";
$str_from = "";
$str_zip = "";
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://testext.i-movo.com/api/receivesms.aspx?".$str_from.$str_zip.$phone.$str_time.$date1.$str_msg);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
}
else if ($points == 500) {
$b = time ();
$date1 =date( "Y-m-d;h:i:s" , mktime(date("h")+6, date("i"), date("s"), date("m") , date("d"), date("Y")));
$str_time = "";
$str_msg = "";
$str_from = "";
$str_zip = "";
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://testext.i-movo.com/api/receivesms.aspx?".$str_from.$str_zip.$phone.$str_time.$date1.$str_msg);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
}
else {
echo "We are sorry, you don't possess enough points in order to take the coupon";
}
echo '</div>';
?>
答案 0 :(得分:1)
这很有意思......你知道你在调用curl之前关闭了php吗?
从中间删除?>
并将其放在页面的末尾
其次,我不建议继续使用mysql_query
来自PHP DOC
不鼓励使用此扩展程序。相反,应该使用MySQLi或PDO_MySQL扩展。另请参阅MySQL:选择API指南和相关的常见问题解答以获取更多信息。该功能的替代方案包括: