thuku 0 Newbie Poster

Hi Gurus,

If I have an existing code, How do I make it a plug in on wordpress, and add it to the dsahboard ?

thuku 0 Newbie Poster

The 2 cms's are updating the same database

thuku 0 Newbie Poster

Hi,

I have a wordpress site, which has 2 back ends for the admin to administer content.
-The wordpress admin login
-a php content management software.
My question is, how can I add this php cms to a wordpress dashboard? What options are available and how can I do it.

thuku 0 Newbie Poster

thanx for the reply.i just had a mentality that it was gona be some tuff php.maybe arrays.but i agree with your anwer.

thuku 0 Newbie Poster

I wana perform a search on my mysql database.i want to search 4 categories at the same time e.g a person who wants to search for a nike shoe, size no 7, in africa, in kenya.
How will i go about dat.

thuku 0 Newbie Poster

wsup guys.I hav managed to split a string into indivudual words usin
the split function.
i have displayed the indivudual words in three textboxes.However since am developin a swahili english language translator, how do i perform a search in my database, to look out for this indivudual wordss and there correspondin translation in swahili, and display them in a textbox? My code is as shown below.but it isnt exeuting.how do i get to search for multiple words all at once?

Private Sub cmdTranslate_Click()
 Dim strEntry As String
 strEntry = InputBox("Enter the english sentence to split and translate to  swahili")
    sFood = Split(strEntry)  
     Dim i As Integer
    For i = 0 To UBound(sFood) 'assuming the sentence has 3 words
        Text1.Text = sFood(0)
        Text2.Text = sFood(1)
        Text3.Text = sFood(2)

    Next
 With rswords
    .MoveFirst
    .Find "English_word like '" & Text1.Text & "'"
    .Find "English_word like '" & Text2.Text & "'"
    .Find "English_word like '" & Text3.Text & "'"
    If .EOF = Tr Then
        MsgBox "Record does not Exists"
        Call ClearControls
    Else
      Text1.Text= ![English_word] & ""
      Text4.Text= ![Swahili word] & ""
      Text2.Text= ![English_word] & ""
      Text5.Text= ![Swahili word] & ""
     Text3.Text= ![English_word] & ""
      Text6.Text= ![Swahili word] & ""
    End If
   End With
End Sub

regards thuku

thuku 0 Newbie Poster

hi guys?i need some help.i am developing a swahili, english language translator.i have an access database,which has 2 columns.namely(English word, Swahili word).which function in vb6 or vb.net can i use to break down an entire sentence into tokens, then translate the individual words directly from the database?
thanks