Guides World - Guides, tutorials and manuals of all kind, ajax, php, adobe products and more ! Guides, tutorials and manuals of all kind, ajax, php, adobe products and more http://www.guides-world.com/ 19.03.2010 Sistemi CMS Reactor! PHP : Creating PDF documents with PHP http://www.guides-world.com/module,2,t,artikuj,lexo,699.html module,2,t,artikuj,lexo,699.html Step 1 - Install the PDFlib extension PDFlib is not included with the default PHP 5.3 distribution, so you will have to install it. Download the PHP version of the PHPlib library from here. The Windows build of PHP 5 comes in many different varieties. I'll assume that you are using the... PHP : Dispaying your Twitter status with PHP http://www.guides-world.com/module,2,t,artikuj,lexo,698.html module,2,t,artikuj,lexo,698.html Step 1 - Define a URL Regular Expression Twitter posts quite often include links. However, the Twitter API will only return a status update as text, without the HTML markup to identify a link. To get around this we will use regular expressions to turn URLs into clickable links. The... PHP : The most simple PHP contact form http://www.guides-world.com/module,2,t,artikuj,lexo,697.html module,2,t,artikuj,lexo,697.html In this tutorial, I’ll show you how to write the most basic PHP/HTML contact form script. So if you’re looking for validated forms or a fancy flash form, this tutorial isn’t for you. Before you begin, make sure that your hosting provider supports PHP. First, lets open... PHP : Filtering Wordpress Categories Using an Undocumented Hook http://www.guides-world.com/module,2,t,artikuj,lexo,696.html module,2,t,artikuj,lexo,696.html In this article, we will briefly cover Wordpress hooks and use an undocumented one in order to manipulate category listings. After some further digging, while it is not listed on the Wordpress filter list, it appears that this “undocumented hook” is mentioned on the get_terms()... PHP : Post to twitter from your own custom pages http://www.guides-world.com/module,2,t,artikuj,lexo,695.html module,2,t,artikuj,lexo,695.html Are you a frequent twitter poster? Here i am written a simple tutorial on how to post to twitter from your own custom page using twitter api. As first we need to create a form to get the message that need to post to twitter. <form id="tweet" name="tweet" method="post" ... PHP : Guestbook tutorial in 3 easy steps http://www.guides-world.com/module,2,t,artikuj,lexo,694.html module,2,t,artikuj,lexo,694.html Step #1: creating the database and table. First of all you need to create a database, the process of doing so is fairly simple. To create a database, you will need to use a database management tool. I personally recommend using phpMyAdmin – it is one of the most popular database... PHP : Simple page hit counter http://www.guides-world.com/module,2,t,artikuj,lexo,693.html module,2,t,artikuj,lexo,693.html Part #1: The concept. The concept of making a page hit counter for your website is very simple. It will be based on a text file which will contain a number of page hits. This number will be constantly increased by 1 on each load of the page. This counter will record every single hit, so keep in... PHP : Very simple PHP counter http://www.guides-world.com/module,2,t,artikuj,lexo,692.html module,2,t,artikuj,lexo,692.html This is a simple tutorial on how to make your own Web Counter, to put it into your web page. We’ll start by creating a counter text file named “hitcounter.txt” and save it to the same directory you will put your counter in. Next, open your PHP editor and save the document as... PHP : Installing Wamp Server (Apache+MySQL+PHP) http://www.guides-world.com/module,2,t,artikuj,lexo,691.html module,2,t,artikuj,lexo,691.html WampServer, originally called WAMP5, is a compilation of Apache, MySQL and PHP that is really easy to install and use. It come also with PHPMyAdmin, for you to easily manage your local databases. WAMP is the acronym of Windows + Apache + MySQL + PHP. As you can see, this is the most important... PHP : How to write Shorthand PHP if and else assignments http://www.guides-world.com/module,2,t,artikuj,lexo,690.html module,2,t,artikuj,lexo,690.html What you don’t hear as a beginner When you are learning a scripting language such as PHP you will get the basics of assignment, evaluating and comparison operators such as == <= and != (equal, less than or equal, not equal). They are all you need to start writing code that can vary...