yeah im kinda getting around to understanding now how this is going to work
  it will be realtime as the two textboxes are typed into with 
javascript calls

as an example 
var text="excellent"
text.slice(0,4) //returns "exce"
text.slice(2,4) //returns "ce"



Wade Smart wrote:
>
> Brian E Boothe wrote:
> > hi all
> > i have three text boxes on my form
> > First name
> > Lastname
> > POid
> >
> > when a user types in there first and last name , how can i get the
> > POid to automatically fill in with there Initials ??
>
> 20080917 1257 GMT-6
>
> I dont know what the POid variable but Im assuming that it is the key
> index in your users table? You'll have to do this with javascript if you
> want it done on the fly.
>
> However, what I would do is, first and last are submitted to a page.
> Query the db on the user poid and then forward that page to another with
> those three variables. You could do it in a session variable so you
> could continually track it.
>
> Wade
>
>  



[Non-text portions of this message have been removed]

Reply via email to