Alright i hope i can explain this as best as i can without anyone getting confused! So let's began shall we?
I would like to create a drop down box with names like:
Alright, for each one of those drop down names i would like it to implement a number inside my SiteID stable. The number's can be any digits long. So when people look on the registration form they will see chat 1, chat 2, chat 3, for the drop down boxes. Then when they login their profile they will see the numbers from another thing that i am doing.
The chat 1 for example will have a a number of:
and it will show up on a parameter of:
Something like that, i hope someone can understand where i am coming from and help me with this. Thank you in advanced!
I would like to create a drop down box with names like:
Code:
Chat 1 Chat 2 Chat 3
The chat 1 for example will have a a number of:
Code:
1000
PHP Code:
<param name="siteID" value="<?php echo $_SESSION['SESS_SITE_ID']; ?>">
Comment