PHP BASICS
3 posters
Page 1 of 1
PHP BASICS
What is PHP?
PHP ("PHP: Hypertext Preprocessor") is a widely-used Open Source general-purpose scripting language. It basically contains text, HTML tags and scripts.
Here's a basic example: (basic.php)
PHP echo() statement is used to display the string "Hi, I'm a PHP script!"
Download the code basic.php here
Getting the value from a text field using PHP
1. Create an simple html file (I name it dev_1.html)
Preview:
Download the code dev_1.html here
2. Create a php file (action.php)
Download the code action.php here
PHP ("PHP: Hypertext Preprocessor") is a widely-used Open Source general-purpose scripting language. It basically contains text, HTML tags and scripts.
Here's a basic example: (basic.php)
- Code:
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
echo "Hi, I'm a PHP script!";
?>
</body>
</html>
PHP echo() statement is used to display the string "Hi, I'm a PHP script!"
Download the code basic.php here
Getting the value from a text field using PHP
1. Create an simple html file (I name it dev_1.html)
- Code:
<form action="action.php" method="post">
Your name: <input type="text" name="name" />
Your age: <input type="text" name="age" />
<input type="submit" />
</form>
Preview:
Download the code dev_1.html here
2. Create a php file (action.php)
- Code:
Hi <?php echo $_POST['name']; ?>.
You are <?php echo $_POST['age']; ?> years old.
Download the code action.php here
Last edited by mrs3m0 on Sun Jun 28, 2009 6:32 pm; edited 1 time in total (Reason for editing : Update tutorial)
mrs3m0- FTTF Tutor
- Posts : 10
Reputation : 2
Join date : 2009-06-10
Re: PHP BASICS
well, thnx for sharing..
[PLAYBOY] POSER.FACE- ADMIN
- Posts : 71
Reputation : 19
Join date : 2009-05-26
Age : 31
Location : PLAYBOY COUNTRY
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum