PHP Programming for Beginners. Key Programming Concepts. How to use PHP with MySQL and Oracle databases (MySqli, PDO). Sergey D Skudaev
Чтение книги онлайн.
Читать онлайн книгу PHP Programming for Beginners. Key Programming Concepts. How to use PHP with MySQL and Oracle databases (MySqli, PDO) - Sergey D Skudaev страница 12
echo “”. $_POST [‘name’];
?>
The output page will display:
Hello Dr. Mrs. Emily
You can transfer data from one page to another via link. Edit form_methods.php file. Data sent by link is transferred by the GET method. It can be read from the $_GET [] variable.
With a link you can pass as many parameters as you want. The first parameter starts following a question mark character, after which an ampersand character is placed before each parameter as in the following example:
page.php? param1=value1¶m2=value2¶m3=value3 and so on.
HTTP protocol does not specify any maximum URL length. That would depend on the browser.
<?
session_start ();
$_SESSION [‘title’] =“Dr.”;
setcookie (“prefix”, “Mrs”);
?>
<html>
<head>
<title> Form Methods
</title>
</head>
<body>
<form method=“post” action="formoutputpage.php”>
<p> <input type=“text” name=“greeting” size=“15”> </p>
<p> <input type=“text” name=“name” size=“15”> </p>
<p> <input type=“submit” name=“submit” value=“Salutation”> </p>
</form>
<?
$greeting=“Good morning”
$person=“Michael”;
print (”<p> <a href="link_output.php?
greeting=”. $greeting.”&person=”. $person.””> Link output </a>”);
Конец ознакомительного фрагмента.
Текст предоставлен ООО «ЛитРес».
Прочитайте эту книгу целиком, купив полную легальную версию на ЛитРес.
Безопасно оплатить книгу можно банковской картой Visa, MasterCard, Maestro, со счета мобильного телефона, с платежного терминала, в салоне МТС или Связной, через PayPal, WebMoney, Яндекс.Деньги, QIWI Кошелек, бонусными картами или другим удобным Вам способом.