skip to Main Content

Php – show two values in a same variable

I wanted define two values in a same variable. At first was wrote same this: <body> <a href="name.php?firstname=Tom&amp;lastname=schneider">Hi, I’m Tom schneider!</a> </body> and in php: <?php $name = $_GET['firstname' , 'lastname']; echo 'Herzlich Willkommen ' . $name . '!'; ?>…

VIEW QUESTION
Back To Top
Search