You can use a foreach() block to show the valuables.
Example:
foreach($_POST as $name => $value) {
print "$name : $value<br>";
}
You can remove the underline as the following.
1) Inline style
<A STYLE="text-decoration:none" HREF="http://www.phppop.net">
LAMP Information Web Site</A>
2) Internal style-sheet
<STYLE>
<!-
a {text-decoration:none}
//->
</STYLE>
3) External style sheet
<!-
a {text-decoration:none}
//->
You save the file and name it something.css.
Relative:
Ralative allows you to place an object in relation to where it would normally have been positioned if only HTML were the only position control. What this means is that you position an HTML element within the current flow of the document. It gives you less control over the actual layout of the page, but allows you to position elements within the page itself.
<Example>
<p>
Relative Sample Test
<img src="img01.gif" width="50" height="50" border="0" alt="sample image" /><br>
<div style="position:relative; left:0px; top:0px; color : #cc0000;">
Then another text block</div>
</p>
Absolute:
Absolute positioning takes its starting point from the upper left corner of the browser pane, this is coordinate 0,0. Once you use absolute positioning, this object does not affect any other object in the flow.
<Example>
<p>
Scroll to the left to see my image, positioned 500 pixels from the left and 500 pixels down from the top of the browser window.
</p>
<div style="position: absolute; left: 500px; top: 500px;">
<img
src="img01.gif" width="50" height="50" border="0" alt="sample image" />
</div>
The term "Web 2.0" describes the changing trends in the use of World Wide Web technology and web design that aim to enhance creativity, communications, secure information sharing, collaboration and functionality of the web. Web 2.0 concepts have led to the development and evolution of web culture communities and hosted services, such as social-networking sites, video sharing sites, wikis, blogs, and folksonomies. The term first became notable after the O'Reilly Media Web 2.0 conference in 2004. Although the term suggests a new version of the World Wide Web, it does not refer to an update to any technical specifications, but rather to changes in the ways software developers and end-users utilize the Web. According to Tim O'Reilly.
A cookie is a file containing a minimal amount of data that is stored by a web browser in response to a request
from a script or a server. They are often used as a means to identify and track web site visitors.
The n12br() function inserts line break into the web page by turning every new line into a break so as to prevent
the text from running together in an awkward lump.
string n12br( string str )
The n12br function inserts a HTML line break (<br />) before all new line characters.
You should note that it does not replace the line breaks -- the \n breaks are left intact.
For example :
|
$mystr = "This is a test\nYes it is."; $brstr = n12br($mystr); // set to "This is a test<br />\nYes it is." |
The "post" method delivers the information from the form hidden in the background, and the "get" method
delivers the results as part of the URL.
Example:
http://myserver.com/cart/log_in.php?UserID=user01&pswd=welcome&submit=Enter
PHP is a server-side scripting language that allows you to submit specifications for Web pages that are executed by the Web server software (such as Apache) before the pages are sent to the requesting browser for display.