Jump to content

[SOLVED] Stop a string from printing to a browser?


ballhogjoni

Recommended Posts

How do you stop this from printing to a browser?

 

a:5:{s:8:"username";s:13:"sdff@jkdl.com";s:7:"user_id";s:2:"-1";s:4:"code";i:0;s:4:"text";s:33:"API Command executed Successfully";s:7:"version";s:3:"3.0";}

 

This is my code:

<?php
session_start();
$_SESSION['first'];
$_SESSION['last'];
$_SESSION['email'] = $_POST['email'];
$_SESSION['address'] = $_POST['address'];
$_SESSION['city'] = $_POST['city'];
$_SESSION['state'] = $_POST['state'];
$_SESSION['zipcode'] = $_POST['zipcode'];
$_SESSION['areacode'] = $_POST['areacode'];
$_SESSION['prefix'] = $_POST['prefix'];
$_SESSION['linenumber'] = $_POST['linenumber'];
$_SESSION['Iagree'] = $_POST['Iagree'];
?>
<?php
$username="xxxx";
$password="xxxx";
$database="xxxx";

mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query = "INSERT INTO eBayoffers_info_1 VALUES ('','".$_SESSION['email']."','".$_SESSION['first']."','".$_SESSION['last']."','".$_SESSION['address']."','".$_SESSION['city']."','".$_SESSION['state']."','".$_SESSION['zipcode']."','".$_SESSION['areacode']."','".$_SESSION['prefix']."','".$_SESSION['linenumber']."','".$_SESSION['Iagree']."')";
mysql_query($query);

mysql_close();

$ccnumber=$_POST['ccnumber'];
$expmonth=$_POST['expmonth'];
$expyear=$_POST['expyear'];
$first = rawurlencode($_SESSION['first']);
$last = rawurlencode($_SESSION['last']);
$email = rawurlencode($_SESSION['email']);
$areacode = rawurlencode($_SESSION['areacode']);
$prefix = rawurlencode($_SESSION['prefix']);
$linenumber = rawurlencode($_SESSION['linenumber']);
$phone = $areacode.$prefix.$linenumber;
$address = rawurlencode($_SESSION['address']);
$city = rawurlencode($_SESSION['city']);
$state = $_SESSION['state'];
$zipcode = rawurlencode($_SESSION['zipcode']);
$username = 'xxxx'; 
$password = 'xxxx'; 
$command = "user.configure";
$user_id = "NEW";
$url = "https://www.xxxx.com/auto/api.php?partner_login=$username&partner_password=$password&test=TRUE&command=$command&user_id=$user_id&service=\"code=DS,frequency=M,action=add,renewal_billed_to=U,trial=7\"&output=php&phone=$phone&first_name=$first&last_name=$last&bill_address1=$address&bill_address2=&bill_city=$city&bill_state=$state&bill_postal=$zipcode&bill_country=US&username=foousername&password=foopassword&cc_num=$ccnumber&cc_exp=$expyear-$expmonth&email=$email";

$ch = curl_init();
curl_setopt( $ch , CURLOPT_URL , $url); //the url 

$ret = curl_exec($ch);
/*curl_setopt($ch, CURLOPT_FAILONERROR, 1);  
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects  
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable  
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // times out after 4s  
curl_setopt($ch, CURLOPT_POST, 1); // set POST method
*/
curl_close($ch); 

?>
<html>
<head>

<meta http-equiv="refresh" content=".0;url=/xx/xxx/xxx.php">

</head>
<body>
</body>
</html>

 

I think it has something to do with the CURL script.

Link to comment
Share on other sites

here is one way:

<?php
session_start();
$_SESSION['first'];
$_SESSION['last'];
$_SESSION['email'] = $_POST['email'];
$_SESSION['address'] = $_POST['address'];
$_SESSION['city'] = $_POST['city'];
$_SESSION['state'] = $_POST['state'];
$_SESSION['zipcode'] = $_POST['zipcode'];
$_SESSION['areacode'] = $_POST['areacode'];
$_SESSION['prefix'] = $_POST['prefix'];
$_SESSION['linenumber'] = $_POST['linenumber'];
$_SESSION['Iagree'] = $_POST['Iagree'];
?>
<?php
$username="xxxx";
$password="xxxx";
$database="xxxx";

mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query = "INSERT INTO eBayoffers_info_1 VALUES ('','".$_SESSION['email']."','".$_SESSION['first']."','".$_SESSION['last']."','".$_SESSION['address']."','".$_SESSION['city']."','".$_SESSION['state']."','".$_SESSION['zipcode']."','".$_SESSION['areacode']."','".$_SESSION['prefix']."','".$_SESSION['linenumber']."','".$_SESSION['Iagree']."')";
mysql_query($query);

mysql_close();

$ccnumber=$_POST['ccnumber'];
$expmonth=$_POST['expmonth'];
$expyear=$_POST['expyear'];
$first = rawurlencode($_SESSION['first']);
$last = rawurlencode($_SESSION['last']);
$email = rawurlencode($_SESSION['email']);
$areacode = rawurlencode($_SESSION['areacode']);
$prefix = rawurlencode($_SESSION['prefix']);
$linenumber = rawurlencode($_SESSION['linenumber']);
$phone = $areacode.$prefix.$linenumber;
$address = rawurlencode($_SESSION['address']);
$city = rawurlencode($_SESSION['city']);
$state = $_SESSION['state'];
$zipcode = rawurlencode($_SESSION['zipcode']);
$username = 'xxxx'; 
$password = 'xxxx'; 
$command = "user.configure";
$user_id = "NEW";
$url = "https://www.xxxx.com/auto/api.php?partner_login=$username&partner_password=$password&test=TRUE&command=$command&user_id=$user_id&service=\"code=DS,frequency=M,action=add,renewal_billed_to=U,trial=7\"&output=php&phone=$phone&first_name=$first&last_name=$last&bill_address1=$address&bill_address2=&bill_city=$city&bill_state=$state&bill_postal=$zipcode&bill_country=US&username=foousername&password=foopassword&cc_num=$ccnumber&cc_exp=$expyear-$expmonth&email=$email";

ob_start();
$ch = curl_init();
curl_setopt( $ch , CURLOPT_URL , $url); //the url 

$ret = curl_exec($ch);
/*curl_setopt($ch, CURLOPT_FAILONERROR, 1);  
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects  
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable  
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // times out after 4s  
curl_setopt($ch, CURLOPT_POST, 1); // set POST method
*/
curl_close($ch); 
ob_end_clean();
?>
<html>
<head>

<meta http-equiv="refresh" content=".0;url=/xx/xxx/xxx.php">

</head>

<body>
</body>
</html>

 

See if that works. Used functions ob_start() and ob_end_clean()

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.