Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Nimotek #1
multiple menu/list values inserted into one mysql column
Simple problem here for the pros I'm sure. I have constructed a "rockshow"
database in mysql for local music artists/bands and I made an input form in
Dreamweaver. The problem I'm having is how to merge values from two different
drop down menus/lists so that they can be inserted into the same column in the
shows table in my database. Ex. The first menu has time in half hour
increments (1:00, 1:30, 2:00 etc) and the second menu has "am, pm". I just
would like the two selected values to merge into "1:00 pm" so that it will
insert that way into the single column in the database table which is
"showtime". Thanks for any followups.
Nimotek Guest
-
submit multiple values from a list box PHP
Can any one tell me how to submit multiple values from a list box? I believe it has something to do with Arrays or Loops but i'm not sure. this is... -
Concatenate column values from multiple rows
Greetings, Would it be possible to construct SQL to concatenate column values from multiple rows? SELECT ... FROM T1, T2 WHERE T1.key=T2.fkey... -
Sum a column of values from a MySQL query
I am trying to sum a query of values from a MySQL table. The code I am using is: ---BEGIN CODE #1-------------- $sql_2 = "SELECT... -
[PHP] Sum a column of values from a MySQL query
I am trying to sum a query of values from a MySQL table. The code I am using is: ---BEGIN CODE #1-------------- $sql_2 = "SELECT... -
Multiple Values in a list box
Hi everybody. If anyone can tell me how can I choose multiple values in a list box (by using ctrl or shift buttons) and store them in a table.... -
-Rb #2
Re: multiple menu/list values inserted into one mysql column
"Nimotek" <webforumsuser@macromedia.com> wrote in message
news:cuv05u$rom$1@forums.macromedia.com...Perhaps you could use the concatention operator ('.')> Simple problem here for the pros I'm sure. I have constructed a "rockshow"
> database in mysql for local music artists/bands and I made an input form in
> Dreamweaver. The problem I'm having is how to merge values from two
> different
> drop down menus/lists so that they can be inserted into the same column in
> the
> shows table in my database. Ex. The first menu has time in half hour
> increments (1:00, 1:30, 2:00 etc) and the second menu has "am, pm". I just
> would like the two selected values to merge into "1:00 pm" so that it will
> insert that way into the single column in the database table which is
> "showtime". Thanks for any followups.
>
<?php
$a = "Hello ";
$b = $a . "World!"; // now $b contains "Hello World!"
$a = "Hello ";
$a .= "World!"; // now $a contains "Hello World!"
?>
The PHP documentation is available at:
< [url]http://www.php.net/docs.php[/url] >
HTH
-Rb
-Rb Guest



Reply With Quote

