PHP DOB - Concatination Programming Web Development by LloydFarrell … new to php Id like to understand \ learn more about concatination the fields are called dob_d \ dob_m \ dob_y [code] $gender = clean… Re: "object , object" concatination? Programming Software Development by senateboy commas act as concatination in this example: [CODE]#string concatination with a comma "i love cities" , "like … Re: "object , object" concatination? Programming Software Development by mawe [quote="senateboy"] commas act as concatination in this example: [/quote] No it does not concatenate! Or am I silly? :) [code]x = "a", "b" print x # -> ('a', 'b')[/code] It creates a tuple, and that's what is returned in my example, a tuple. operator overloading Programming Software Development by apontutul There is no operator overloading in JAVA, but operator + is used as arithmetic addition and concatination operator. why ? please clarify this Interpret a string as name of an array element name Programming Software Development by Giffordw I need to build a string and then interpret that string as the name of an element in a defined array. Concatination of the string is easy. strCard = R2_5 & "(17)" How then to put strCard into If(strCard = 1) Then ...? file upload to mysql Programming Web Development by LloydFarrell …;update memberst set img1='$dest' where id=$lastid"); } [/code] concatination option - no image being uploaded [code] if($lastid > 0… String concationation Programming Software Development by simply_viks please send me n example for string concatination using ACE ACE_CString.. thanks. concatinate string using pointer Programming Software Development by prasenjit_das hi all, I do not understand how i concatination of two string using pointer in c++. please can you give sugestion how i implement.. thanks in advance MS EXCEL's union of 2 sets Programming Software Development by masterjiraya … the ability to combine 2 sets of data not by concatination. In Database Programming the sets of data from multiple tables… string "hh:mm:ss tt" conversion to Datetime hh:mm:ss tt Programming Software Development by sydoggs … a start_time and an end_time both entered as string using concatination of comboboxes(hour:minute:second AM/PM) and saved in… Re: creating our own C++ strcat() function, code reqd Programming Software Development by sahil_logic …i' changed for new ISO `for' scoping C:\Dev-Cpp\concatination.cpp:12: error: using obsolete binding at `i' C…:\Dev-Cpp\concatination.cpp:18: error: name lookup of `j' changed for… new ISO `for' scoping C:\Dev-Cpp\concatination.cpp:15: error: using obsolete binding at `j' Execution… Re: Getting Radio Buttons to access Mysql Database Programming Web Development by sagedavis … actually an empty string. You may need to check my concatination systax a little bit, since it's been a while… again. I'm still not 100 percent sure if the concatination itself is correct, but, just know that you need to… Re: Error: Type Mismatch - access + vb 6.0 Programming Software Development by JerieLsky … (') single quotes, what would happen is that it makes a concatination which makes the SQL statement wrong or produces a SQL… [tblMembership].[UserID] = " + roleUserID + ""[/CODE] - this produces a concatination. Re: Assigning values to array of hand made class Programming Software Development by Momerath … has to create a whole new object. Do lots of concatination and memory will be filled with strings :) StringBuilder allows you… to do concatination without the overhead of having to create new strings. ------ Your… Re: Starting Python Programming Software Development by vegaseat … intended result, since they create a new string # slicing and concatination str2 = 'J' + str1[1:] # using replace() str3 = str1.replace('H… Re: problem with string Programming Software Development by vegaseat Can you give us the error message and a little more of your code? Without that info, I don't know what your resultset looks like. I can only assume that mp3id could be an integer and needs to be converted to a string to work with the + concatination. In this case mp3id = str(record[0]) would do the trick. Re: Starting Python Programming Software Development by vegaseat You can create a list by concatination and multiplication. The example below shows you a practical approach ... [… Re: Trying to learn Tkinter. Want help with the menu: Programming Software Development by Ene Uran … result string # use str() to convert numbers to string for concatination with + label2.config(text=str(num1) + 'meters = ' + str(result) + 'cm… Re: Image Load: MIA Programming Software Development by vegaseat …": for rank in "A23456789TJQK": # eg. append the concatination of 'C'+'A' = 'CA' card_list2.append(suit+rank) # to test… Re: calculations in formview with C# Programming Software Development by GeneM …;[/COLOR])).Text = total.ToString(); [COLOR=#008000]//This gave me a concatination [/COLOR][COLOR=#008000]//((TextBox)FormView1.FindControl("totalTextBox")).Text… Re: Calculation in FormView Programming Web Development by GeneM …;[/COLOR])).Text = total.ToString(); [COLOR=#008000]//This gave me a concatination [/COLOR][COLOR=#008000]//((TextBox)FormView1.FindControl("totalTextBox")).Text… Re: joining two strings in C Programming Software Development by arunpawar string concatination can b used if uwant.it works with most old borkland compilers. Re: inserting a character in a string Programming Software Development by debasisdas you can use string functions with concatination or just follow the previous post. Re: How to prevent duplicate rows without primary key Programming Software Development by LizR You could make a primary key that is the concatination of both fields together, this would be the normal way to do it Re: The difficulties I have in learning C++ Programming Software Development by csurfer … of 8 to character or anything.Its just a string concatination to another string. Re: The difficulties I have in learning C++ Programming Software Development by 23.12.2012 Thanks a lot for the further explanation. [quote] Its just a string concatination to another string. [/quote] I think that's what the example was trying to show. It was about the use of strings. Re: Help with arrays Programming Software Development by vb5prgrmr … (MyStringArray = Split(Text1.Text, ",") UBound LBound For Loop Concatination (Text2.Text = Text2.Text & ...) Good Luck Re: assigning data to a 2d char array within structure Programming Software Development by Luckychap …;item[" + i + "][" + j + "]";// This string concatination might not work with your compiler } } [/code] So your assigning… Re: Need Help With Database Login Programming Web Development by ayesha789 Try this too [CODE]$Result = mysql_query("INSERT INTO users (user_id, username, user_password, user_regdate) VALUES ('hi',". $username .",". $password .",'beta')"); [/CODE] . is use for concatination Re: Conversion from string to type 'Double' is not valid. Programming Web Development by sri_sreeraj … '&' instead of '+' In VB '&' is used for string concatination. At first I used + for that purpose. After replacing that…