No account yet?

Links

Home arrow Articles arrow Programming arrow PHP
PHP
Add more module positions in joomla 1.0 PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

In the file administrator\components\com_templates and opening admin.templates.html.php

On line 357:

 

 
Web Publishing with FileMaker and PHP - A comparison of FX.php and the FileMaker API for PHP PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0
  1. Introduction
    1. Who should read this document
      • FileMaker developers who are new to web publishing.
      • FileMaker developers who are feeling constrained by IWP.
      • FileMaker developers who have done CWP with FX.php.
      • FileMaker developers who have done CWP with XML/XSLT and are considering a move to PHP.
      • PHP developers who would like to learn how to work with a FileMaker backend.
      • CDML and Lasso developers who are planning to transition to a modern technology.
    2. Purpose of this document
      • This document was created to outline the basic similarities and differences of the FX.php and FileMaker.php classes.
      • This document maintains that developers writing CWP solutions should be familiar with both classes.
      • This document does not globally advocate either option.
      • This document is more conceptual that practical, therefore code examples will be kept to a minimum.
      • This document is not intended to teach the reader how to implement a CWP solution.
    3. Document conventions
      • Throughout this document, the terms "FileMaker API for PHP" and "Filemaker.php" will be used interchangebly.
Last Updated ( Thursday, 15 October 2009 )
Read more...
 
PHP Function to convert tabs to spaces PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 1
 
How to enable error reporting without modifying the php.ini file PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0
Last Updated ( Monday, 23 March 2009 )
 
Get the last inserted id in from php on a mysql database PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 1

This is useful when you are working with multi page forms. If you want to update some information on one page, for one record, and then move to another page and update the same record some more you will need the primary key id field,

This is applicable to the case where the id field is an auto increment, which is the case seen in most circumstances. 

The code is really simple, lets take a look at how its done. 

 

Last Updated ( Thursday, 18 September 2008 )
Read more...