# User enter Email, Automatically printed next page(in Email entry)

**URL:** https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327
**Category:** Questions about Thunkable X
**Created:** [August 12, 2021, 6:27pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327 "2021-08-12T18:27:23Z")
**Posts on this page:** 15
**Page:** 1

<div class="post-metadata">

### Author: ![jumalcom222](https://avatars.discourse-cdn.com/v4/letter/j/df788c/32.png) [@jumalcom222](https://community.thunkable.com/u/jumalcom222)
#### Post date: [August 12, 2021, 6:27pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/1 "2021-08-12T18:27:23Z")

</div>

On the initialization screen, how do I automatically print the user-entered email to the Email entry on the next screen and also enter it into Airtable?

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [August 12, 2021, 7:35pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/2 "2021-08-12T19:35:46Z")

</div>

When you save the entered email (or any other info) in an `app variable` you can then use it anywhere in the app. You can use it in any screen and update the data source.

---

<div class="post-metadata">

### Author: ![mimostel](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/mimostel/32/107661_2.png) [@mimostel](https://community.thunkable.com/u/mimostel)
#### Post date: [August 12, 2021, 7:52pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/3 "2021-08-12T19:52:04Z")

</div>

… and if that variable is a “stored” variable type, it will be available even between sesions… it will be locally saved. Actually user/email type is normally kept in a stored variable, so a user not to be forced everytime he acces the app to enter those again. 😉

---

<div class="post-metadata">

### Author: ![jumalcom222](https://avatars.discourse-cdn.com/v4/letter/j/df788c/32.png) [@jumalcom222](https://community.thunkable.com/u/jumalcom222)
#### Post date: [August 13, 2021, 4:29am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/4 "2021-08-13T04:29:58Z")

</div>

Would you please teach me how to program by thunkable program block ?

---

<div class="post-metadata">

### Author: ![vishruth-ram](https://avatars.discourse-cdn.com/v4/letter/v/82dd89/32.png) [@vishruth-ram](https://community.thunkable.com/u/vishruth-ram)
#### Post date: [August 13, 2021, 4:34am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/5 "2021-08-13T04:34:29Z")

</div>

users will be entered in to firebase

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [August 13, 2021, 8:00am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/6 "2021-08-13T08:00:15Z")

</div>

There are a lot of useful tutorials that you can learn from and once you get stuck the community here will help you to get going again.

---

<div class="post-metadata">

### Author: ![domhnallohanlon](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/domhnallohanlon/32/29554_2.png) [@domhnallohanlon](https://community.thunkable.com/u/domhnallohanlon)
#### Post date: [August 13, 2021, 8:24am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/7 "2021-08-13T08:24:56Z")

</div>

> [@jumalcom222](#):
>
> how to program by thunkable program block ?

@jumalcom222, following up on @muneer’s suggestion, here’s a tutorial on using variables you can follow:

[![](https://img.youtube.com/vi/3M9F3X1bCnA/maxresdefault.jpg "App Variables in Thunkable") ](https://www.youtube.com/watch?v=3M9F3X1bCnA)

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 13, 2021, 11:19am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/8 "2021-08-13T11:19:37Z")

</div>

Here’s what you need to do:

```auto
When button clicked
do
Set app variable Username to Text_Input_1s text
Set app variable Password to Text_Input_2s text
Navigate to Screen2

When Screen2 Opens
do
Set Label1s text to Join [app variable Username]
                         [" "]
                         [app variable Password]

```

---

<div class="post-metadata">

### Author: ![jumalcom222](https://avatars.discourse-cdn.com/v4/letter/j/df788c/32.png) [@jumalcom222](https://community.thunkable.com/u/jumalcom222)
#### Post date: [August 14, 2021, 4:10pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/9 "2021-08-14T16:10:26Z")

</div>

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/1/c188963ec14b17b6869a343102be11e32f4aa30c.png)

Variable name is EEmail…

Error occurs…

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 15, 2021, 2:24pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/10 "2021-08-15T14:24:31Z")

</div>

Initialize it as anything you want, I usually don’t put anything or use an empty text string.

Then when save is clicked _then_ you can use

```auto
set app variable EEmail to signup emails Text.

```

Either way, what you have wouldn’t work because when the screen starts, it will have the text input saved to the var because you’re trying to have it initialize to the input, which would be nothing because the user wouldn’t have time to put anything in it!

---

<div class="post-metadata">

### Author: ![jumalcom222](https://avatars.discourse-cdn.com/v4/letter/j/df788c/32.png) [@jumalcom222](https://community.thunkable.com/u/jumalcom222)
#### Post date: [August 15, 2021, 4:45pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/11 "2021-08-15T16:45:15Z")

</div>

Please see above my error…

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 17, 2021, 12:13am UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/12 "2021-08-17T00:13:06Z")

</div>

Again, just initialize it to nothing. It’s not important.  
What you do need to do is when save click set the variable.

---

<div class="post-metadata">

### Author: ![jumalcom222](https://avatars.discourse-cdn.com/v4/letter/j/df788c/32.png) [@jumalcom222](https://community.thunkable.com/u/jumalcom222)
#### Post date: [August 17, 2021, 2:53pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/13 "2021-08-17T14:53:51Z")

</div>

Is nothing “null” or “blank” ??

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 22, 2021, 11:11pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/14 "2021-08-22T23:11:42Z")

</div>

It doesn’t need to be anything, but yes, it can.

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:17pm UTC](https://community.thunkable.com/t/user-enter-email-automatically-printed-next-page-in-email-entry/1446327/15 "2024-11-08T13:17:28Z")

</div>


