Creating a php script to send a trackback HTTP request to a blog, read the response, and let the user know whether or not the trackback was successful.
A MySQL Driven Chat Script PHP / Chats
In this article, Tim will show you how to create a quick-n-easy chat script using PHP and a very simple MySQL database. The script will allow visitors to choose a nickname, enter text to send to the chatting window, and view messages from other people... all in real-time! For a bit of fun, the chat application also has buttons to send several emote-icons including smiling and frowning faces.One of the most popular uses for the Internet is person-to-person communication.
Restricting External Access to .PHP Files PHP / Security
Sometimes, when you are writing your PHP script, you'll write Classes and Functions that you will use in your script in external files so that they might be included( ) or required( ) at any time. The same could be said about configuration files - You have certain settings in the form of variables in a external configuration file that you load in the different pages of your script so that they might be shared and edited with ease.
Importing csv data into MySQL with php script PHP / Databases
This tutorial will show you how to import csv data into MYSQL with a simple PHP script. Many times you have to write a script because the import function in phpMyAdmin will not import the way you want.
Your First PHP Script PHP / Getting Started
In this tutorial learn how to do a PHP script. Writing a PHP script is very simple. No special software is needed, except a text editor like Notepad in which the script is written.
Creating simple PHP contact form PHP / Emailing
When you need user send feedback to your email you can usecontact form. In this tutorial you'll learn how to create contact form with php script.
Creating simple PHP contact form PHP / Emailing
When you need user send feedback to your email you can usecontact form. In this tutorial you'll learn how to create contact form with php script.
Sending emails with php PHP / Emailing
We will see how the PHP server-side scripting language can be used to send email, and explore how to send complex message types such as HTML email or emails with file attachments.
Creating Your Own Log Files PHP / Site Analysis
Don't have access to your server logfile? Here, you will find how to create your own logfile using PHP. It is basically a small PHP script that extracted all the appropriate environment variables, put them together as a Common Logfile Format entry and write it to a file.