Posts Tagged PHP

Automatically display form data with PHP

This is a simple PHP  script to automatically display (dump output)  data submited from a html form.
The form setup

all inputs (form fields) need to have the same name with [] at the end to turn it into an array,  e.g <input type=text name=formdata[]>

formq.html content
<form method=post action=showme.php>
Name: <input type=text name=formdata[]><br>
Email: <input type=text name=formdata[]><br>

<input type=submit value=ok>
</form>

The Script [...]

, , , ,

No Comments

PDF to Email with registration

Serve PDF files on your website by requesting the user to register their email address. The PDF file is sent to the given email address and the user details registered on a database. This is a very simple script and relies on four main features.

Apache mod_rewrite (via the .htaccess file)
PHPMailer
MySQL database
the simple-register.php script itself

Technorati Tags: [...]

, , ,

No Comments

SugarCRM Installation error: session.save_path not set

SugarCRM Community Edition 5.2.0a has shown me the following error during installation. “The session.save_path setting in your php configuration file (php.ini)
is not set or is set to a folder which did not exist. You might need to
set the save_path setting in php.ini or verify that the folder sets in
save_path exist.”
Before you attempt to follow [...]

, ,

2 Comments

Search Engine Optimization SEO in PHP (Book)

The term SEO (Search Engine Optimization) has become a new phenomenon with marketeers.  As a programmer/developer it’s very hard to find a good book on such a broad subject but recently I found this great book. The authors go about explaining and guiding you through exercises that are relevant for both programmers and marketeers.  [...]

, , , , ,

1 Comment