| Home : Web : PHP |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
|
PHP Listings
|
|
Total:
125 | Displaying: 21 - 30 | Pages: << 1 2 3 4 5 6 7 8 9 10 >> |
|
|
|
In this tutorial you will learn about PHP Syntax - Syntax for Writing a script, Scripts VS. File and Comments
Writing a script:
To embed PHP code inside a file, it has to be inside a special set of opening and closing tags.
PHP supports the following tags sets:
1. Opening (< ?php) and closing (? >)
2. Opening (< ?) and closing (? >)
3. Opening (< %) and closing (% >)
4. Opening (< script language=”php” >) and closing (< /script >)
Example:
< html >
.....< head >
..........< title >Sample document< /title >
.....< /head >
.....< body >
..........< ?php
...............echo “Sample text”;
..........? >
.....< /body >
< /html >
Updated: 05/24/2006
|
|
|
phpNet's Simple Login : With this tutorial you will learn how to create a user login script in PHP. It will also check the "user" session variable is empty and if the "loggedIn" session variable does not equal true. If any of those are a true statement, it will stop everything by using the "die" function and tell them that the verification failed. It uses about 2 files and pretty easy to understand and grasp the basics.
Platform(s): LINUX; BSP; WINDOWS - Updated: 06/11/2005
|
|
|
Using Sessions in PHP : A tutorial on the basics of sessions in PHP.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
Cookies 101 :
Platform(s): LINUX; BSP; WINDOWS - Updated: 06/11/2005
|
|
|
Cookies in PHP : For those new to web development and 'how things work', cookies can be a very confusing matter. In this tutorial, Timothy gives you an overview of cookies to help you understand how they work.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
Share PHP and ASP sessions : You may need to know little bit about session to begin using this idea and the sample codes. Full detail will give you how to integrate both ASP and PHP sessions.
Platform(s): WINDOWS BSP; - Updated: 06/11/2005
|
|
|
Introduction to cookies : Learn about the usefullness of cookies, what they can be used for, and also learn how to create a simple unique computer counter using cookies.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
Sessions : This tutorial will teach an alternative and effective solution to cookies in PHP which might actually be better for your website and security.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
Cookies : Setting and playing around with cookies is a fun and useful way to save data on a user's hard drive, and can successfully store valuable information which may be helpful the next time they come to the site. Its fairly simple to set up, and even easier to read.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
Using sessions make a login script : To start, this tutorial, you should have some basic knowledge of php coding. Refer to Hotscripts for some basic and more advanced php coding tricks.
Platform(s): N/A BSP; - Updated: 06/11/2005
|
|
|
PHP Listings
|
|
Total:
125 | Displaying: 21 - 30 | Pages: << 1 2 3 4 5 6 7 8 9 10 >> |
|
|