Jump to content

Mysql Query.


Person

Recommended Posts

ok i have the following now

 

<?php
$host = "localhost";
$user = "user";
$pass = "pass";
$dbname = "user";

$con = mysql_connect($host,$user,$pass) or die (mysql_errno().": ".mysql_error()."<BR>");
mysql_select_db($dbname);

$query = "SELECT SUM(1) AS clicks, SUM(`clcpc`), SUM(`chcpc`) FROM `nuke_pnAffiliate_clicktracking` WHERE `pl` = 'rpu' AND  `date` > '20070228'AND `cl` IN (SELECT DISTINCT(cl) FROM rpu_sales WHERE salesman = 'ryan')";
echo $query

$result= mysql_query($query);
$num_results = mysql_num_rows($result);
    
$row= mysql_fetch_assoc($result);

mysql_free_result($result);

echo $result

?>

 

But this is the error i get

 

<br />

<b>Parse error</b>:  parse error, unexpected T_VARIABLE, expecting ',' or ';' in                        <b>/home/brian/clicktracking.php</b> on line <b>13</b><br />

 

Link to comment
https://forums.phpfreaks.com/topic/49893-mysql-query/#findComment-244797
Share on other sites

<?php
$host = "localhost";
$user = "user";
$pass = "pass";
$dbname = "user";

$con = mysql_connect($host,$user,$pass) or die (mysql_errno().": ".mysql_error()."<BR>");
mysql_select_db($dbname);

$query = "SELECT SUM(1) AS clicks, SUM(`clcpc`), SUM(`chcpc`) FROM `nuke_pnAffiliate_clicktracking` WHERE `pl` = 'rpu' AND  `date` > '20070228'AND `cl` IN (SELECT DISTINCT(cl) FROM rpu_sales WHERE salesman = 'ryan')";
echo $query;

$result= mysql_query($query);
$num_results = mysql_num_rows($result);
    
$row= mysql_fetch_assoc($result);

mysql_free_result($result);

echo $result

?>

Link to comment
https://forums.phpfreaks.com/topic/49893-mysql-query/#findComment-244803
Share on other sites

now thats fixed ... next error

 

 

<br />

<b>Warning</b>:  mysql_connect(): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in <b>/home/brian/clicktracking.php</b> on line <b>7</b><br />

2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)<BR>[brian@first brian]$

 

Link to comment
https://forums.phpfreaks.com/topic/49893-mysql-query/#findComment-244805
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.