have 3 currency icons and if you clicked on it it would change to that currency ..
The currency is currently being pulled from a database
| Text | |
1
23
| $result = mysql_query( 'SELECT `tblpricing`.`annually`'. ' FROM tblpricing'. ' WHERE ((`tblpricing`.`relid` =1) AND (`tblpricing`.`currency` =1) AND (`tblpricing`.`type` ="product"))'. ' LIMIT 0, 30 ') or die(mysql_error());
$row = mysql_fetch_assoc($result); echo $row['annually']; |
so say if i changed
`tblpricing`.`currency` =1
to
`tblpricing`.`currency` = $currenceyselection
Can I use a button to change the value in $currenceyselection?
ps. I know i don't need the limit 0,30
_____________________________________________
<randomness>
streaming music - your music - spotify
Everything websites.... soon
My Blog .......... here (still in dev mode)
Me twittering go add
<randomness>
streaming music - your music - spotify
Everything websites.... soon
My Blog .......... here (still in dev mode)
Me twittering go add



Print Thread
Taras