Hi, I have just made first script of my life and want to share with you guys
. Well guys it is all about login, logout, registration feature. Its Name is GLOG It is very easy to use. It is made in PHP and MySQL. More over it is FREE. Then why not you give it a try. You can put this script in your website but do not remove footer link please. if you liked GLOG then leave a comment here. Installation feature and all license agreements are in the zip file.
Downloaded a total of 1830 times
Thanks.
Technorati Tags: Download, Downloads, Free Scripts, PHP Script, Script
You can install PHP, Mysql, phpmyadmin, Zend optimizer and Sqlitemanager in 5 minutes! by the following softwares. Downloading and installing these takes very much time, so I suggest you to download Vertrigo or Wamp.
About Vertrigo
VertrigoServ has been developed as a highly professional, easy to install package consisting of Apache (HTTP web server), PHP, MySQL, SQLite, SQLiteManager, PhpMyAdminand Zend Optimizer for Windows platform. With a convenient all-in-one installer, all components are installed in a single directory and can be used immediately after the installation process has completed. It is designed to be as small and flexible as possible. VertrigoServ is excellent both for beginners and for advanced users.
Download link (only of 8.2 mb)
About Wamp
WAMP5 is free to use (GPL licence).
DOWNLOAD WAMP5 1.6.6
packed November 02 2006
Apache 2.0.59
PHP 5.2.0 + PECL
SQLitemanager
MySQL 5.0.27
Phpmyadmin
(WAMP5 does not work with Windows 98, Me)
Download link (17.2 MB)
Thanks.
This is a question I & my friends get asked so many times, I’ll clear it up here and now…
require
The require() statement includes and evaluates the specific file.
require() includes and evaluates a specific file. Detailed information on how this inclusion works is described in the documentation for include().
require() and include() are identical in every way except how they handle failure. include() produces a Warning while require() results in a Fatal Error. In other words, don’t hesitate to use require() if you want a missing file to halt processing of the page. include() does not behave this way, the script will continue regardless. Be sure to have an appropriate include_path setting as well.
include
The include() statement includes and evaluates the specified file.
The documentation below also applies to require(). The two constructs are identical in every way except how they handle failure. include() produces a Warning while require() results in a Fatal Error. In other words, use require() if you want a missing file to halt processing of the page. include() does not behave this way, the script will continue regardless. Be sure to have an appropriate include_path setting as well.
When a file is included, the code it contains inherits the variable scope of the line on which the include occurs. Any variables available at that line in the calling file will be available within the called file, from that point forward.
^From PHP.net^
In the probable event that the language above has not made anything about the two functions any clearer, the main difference is that the require() function will cause a fatal error to appear on your site where as include() will only give you a warning if it can’t find the file. I think it is clear now
Thanks.
Hi readers. one of the most useful functions that PHP can perform are the require and include functions. These two functions are very similar in the action that they perform. They can call a page from anywhere in your directory (or another one) to a page. The most comment use for this is where headers and footers are involved.
Say, for instance, you have a 10 page web site and you need to edit the links of the page which happen to be text links and appear at the top of each page. With PHP instead of having to edit each page individually you can edit just one - which in the long run will save you a lot of time when editing your pages.
To achieve this, you need to split your page into three sections: a header, the main page and the footer.
Copy the header of the page into a new file and name this new file “header.php” and do the same for the footer, except name this file “footer.php”. Then delete the “header” and “footer” from each of the other pages. Where the header of each file was enter this code:
PHP Code:
require(”header.php”);
?>
Do this for the footer of each page as well, except enter the code below:
PHP Code:
require(”footer.php”);
?>
If you now upload all the pages, including the “header.php” and “footer.php” files and now, whenever you need to edit the header or footer of each page of each file, just open up the “header.php” and “footer.php” files and edit them - simple!
Thanks.