Skip to content
Advertisement

Splitting user’s full name and passing first name to next form pae

I have an html form which spans over several ‘form pages’. The first form page asks for the user’s full name, which will be passed along through each form page until the form is finally submitted.

However… I would like to ‘extract’ just the user’s first name from the full name field, so I may use it throughout the rest of the form in the sales language (text).

Example:

User’s full name is ‘John Smith’.

‘John Smith’ will be passed along each page, and then submitted with the final form page.

However, I would like to be able to use just ‘John’ in several (text) instances throughout the form, such as;

“OK John, we’ll need a little more information from you to generate your quote.”

I realize I could go a different route and have a first name field and a last name field, but I would rather explore the option of splitting the full name field for these purposes.

I have tried a number of things, but keep hitting a wall. Any advice here would be most appreciated. Thank you.

I have included a scaled down, example version of form page 1 and form page 2.

Form Page 1

JavaScript

Form Page 2

JavaScript

Advertisement

Answer

You can split the userName in PHP using explode and then just echo the first element returned by that:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement