Re: substring

2001-03-19 Thread William Decker
I believe there is a function called Right(). Sample is as follows (pardon the VB): DIM sString, sLast4Characters sString = "Hello There" sLast4Characters = Right(sString, 4) So, sLast4Characters now equals "here". Hope this helps! --- Hammad Nasim <[EMAIL PROTECTED]> wrote: > Hi > I need

Re: afraid of using mysql!

2001-02-11 Thread William Decker
As a suggestion, try phpMyAdmin if you want to insert records manually. Also, it will provide you with examples (viewing the source code, that is) on how the inserts, updates, etc. work. phpMyAdmin can be downloaded from http://www.phpwizard.net/projects/phpMyAdmin/ Good Luck! William Decker