3
Answers

saving record with a same name but different id in php mysql

franco

franco

11y
1.7k
1
hi, im new at php and mysql stuff


i have a question regarding php and mysql database

how do i insert a record in the database with a same name but different id?

for example, a name "john" with an id of "123" and the other name also "john" but the id is "456". the id are different but the name is the same.

can anyone help me please..


thanks in advance!
Answers (3)
0
lszk

lszk

NA 5 0 16y
 I found somewhere that I have to save it in rtf file. In source code to this library I found a RtfWriter class. Like a paramether method to generate rtf needs TextArea object. But I have my TextEditorControl only. How to convert it?
0
lszk

lszk

NA 5 0 16y
There is a TextEditorControlBase.Text and with it I can copy the text to Word but without colors.
http://img155.imageshack.us/my.php?image=beztytuuccxke0.png

This is the reason why I posted this topic.
0
Scott Lysle

Scott Lysle

NA 28.5k 14.4m 16y

I am not familiar with that text editor control but with other controls such as a rich text box control, there are methods used to select all of the text, if select all of the text and copy it to the clipboard, you should be able to paste the contents with the formatting.  For a rich text box control, the code would look like this:

private void copyToolStripMenuItem_Click(object sender, EventArgs e)

{

rtbDoc.SelectAll();

Clipboard.SetText(rtbDoc.SelectedRtf, TextDataFormat.Rtf);

}