How to create a working contact form | PHP for beginners | Learn PHP | PHP Programming | Learn PHP

preview_player
Показать описание
Hi guys, welcome to my PHP course for beginners in 2020.

Do you want to learn PHP from scratch? In this course, I will be going through all the basics of PHP. I will show you how you could use PHP in HTML code, what variables and data types are, all the different type of operators, control structures, user functions and built in functions and what the super globals are and how you could use them.

After learning all the basics topics, I want to focus on databases using MySQL because we will be creating a login system after.

My official websites for questions or anything else:

If you are new to programming and you want to learn HTML5 and CSS3, I recommend you to follow the following course first:

Follow me on social media

Useful products for programming and recording that I use
Microphone I use:

My laptop stand:

External monitor:

Reading LED Desk lamp:

External Hard Drive to save projects:

Laptop I use:
Рекомендации по теме
Комментарии
Автор

Hi. I have been trying to figure out how to get a contact form to process on my server with php. It finally worked! Thanks ever so much.

nancyjhg
Автор

For those who are lazy to type style.css
div {
margin: 0 auto;
text-align: center;
}
h1 {
margin: 0;
}
p {
font-size: 14px;
}
form {
margin: 0, auto;
text-align: center;
padding: 20px 0 0 0;
}
input {
width: 200px;
display: block;
margin: 20px auto;
box-shadow: 0 0 10px #000;
border: 1px solid #f2f2f2;
background-color: 1px solid #f2f2f2;
padding: 4px;
}
::placeholder {
text-transform: uppercase;
font-size: 8px;
font-weight: bold;
}
textarea {
width: 200px;
height: 200px;
display: block;
margin: 20px auto;
box-shadow: 0 0 10px #000;
border: 1px solid #f2f2f2;
background-color: 1px solid #f2f2f2;
padding: 4px;
}
button {
width: 120px;
height: 40px;
background-color: #000;
color: #fff;
}

StubbsUkraine
Автор

the whole playlist is gold mine for me, that's awesome dude, ı appreciate

hamit
Автор

Thanks Dary. I noticed that you did not include the $_SERVER super global tutorial. Unless it was not part of the plan or perhaps I missed it

bhongosinxo