Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~6K People Reached
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for my3h

Are you using codeigniter? Maybe the return value of > $resultViewed = $this->model_report_product->getMostViewed(); is an object instead of an array.. Try using this one: foreach($resultViewed as $resultKey => $resultValue) { var_dump($resultValue); $stringResult = $stringResult . "['".$resultValue->name."',".$resultValue->quantity."],"; }

Member Avatar for kurtopia
0
144
Member Avatar for lastgame2007

yeah probably because "INDEX" is a reserved word for mysql, you should try to escape it by using `index` = 'value' check this one [url]http://dev.mysql.com/doc/refman/4.1/en/reserved-words.html[/url]

Member Avatar for kurtopia
0
331
Member Avatar for kurtopia

can someone help me how to transfer files from one server to another server using curl?? please help me, i really need your help

Member Avatar for reygcalantaol
0
199
Member Avatar for patrickm129
Member Avatar for rotten69
0
2K
Member Avatar for johndohmen1963
Member Avatar for johndohmen1963
0
137
Member Avatar for kurtopia

can you help me with this. i have used tcpdf but i dont know how to read the contents of the .doc, .pdf contents and put it in a single pdf for the user to download it. Please help me.. thanks

Member Avatar for twiss
0
68
Member Avatar for PinoyDev

just dont include the index.php to your mem_accnt.php file. once you have your session started in both pages... session can be access in all you files... just dont forget to put the session_start()

Member Avatar for PinoyDev
0
190
Member Avatar for abhi10kumar

just try this: mysql_query("insert into buy_db (from_site, date_time_buy, model, ip) values ('".$_REQUEST['site']."', '".$date."','".$_REQUEST['model']."', '".$_REQUEST['ip']."')");

Member Avatar for vibhaJ
0
164
Member Avatar for nats01282

$idlist = array(1, 2, 3); $ids = implode(", ",$idlist); $query = mysql_query("Select * from tablename where id in (".$ids.")"); try this one it will help you....

Member Avatar for kurtopia
0
77
Member Avatar for samsons17

yeah try putting quotes in the value of email address so that the query will treat it as the value of the field email_address..

Member Avatar for kurtopia
0
2K
Member Avatar for phpDave

yeah i agree with codewall if you dont want the field to be unique then you must query it if it return 0 rows dn it doesnt exist... using mysql_num_rows to check if there are records for that path

Member Avatar for phpDave
0
166
Member Avatar for shamala

i know how to do it in jquery but not in native javascript... var numberDiv = jQuery("div").size(); or var numberDiv = jQuery("div").length;

Member Avatar for kurtopia
0
64

The End.