Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~213 People Reached
Favorite Forums
Favorite Tags
php x 3
Member Avatar for irfani

from my query sql get result like this : btsname------date------dcr aaaa---------jan01------0.2 aaaa---------jan02------0.3 aaaa---------jan03------0.4 aaaa --------jan04------0.5 . . bbbb---------jan01------1.1 bbbb---------jan02------1.2 bbbb---------jan03------1.3 bbbb---------jan04------1.4 . . i try to change result below btsname ----jan01-----jan02-----jan03----jan04-- aaaa--------0.2-------0.3-------0.4-------0.5 bbbb--------1.1-------1.2-------1.3-------1.4 . . i try to make php like this $resulthw=mysql_query($rs); $n = array(); while($row = mysql_fetch_assoc($resulthw)){ if(!isset($n[$row['btsname'][date]])){ …

Member Avatar for sDJh
0
88
Member Avatar for irfani

i try to building graph with charts swf (flash) from query table i have 2 field like year,num, i want result from script like this $chart [ 'chart_data' ][ 0 ][ 0 ] = ""; $chart [ 'chart_data' ][ 0 ][ 1 ] = "2001"; $chart [ 'chart_data' ][ 0 …

Member Avatar for johnsquibb
0
77
Member Avatar for irfani

dear master, from our query get result like this : date ------------name------ num1 2008-02-01 ------john ---------100 2008-02-02-------john --------200 2008-02-03 ------john --------300 2008-02-01 ------dave--------400 2008-02-02------dave--------500 2008-02-03------dave--------600 if we wanto chane from row to colum and get result like here name--------2008-02-01 -------2008-02-02--------2008-02-03 john---------100---------------200-----------------300 dave---------400--------------500-----------------600 how in scrip php thankyou

Member Avatar for nav33n
0
48