[PHP] Xemacs indentation for php

2004-12-30 Thread Song Ken Vern-E11804
Hi, I would like the behaviour of turning on the cc-mode indentation in the tags but turning off when escaping and doing html. I have been looking at the cc-engine.el source and can't seem to find the place where I should change. Is this behaviour possible? thanx -- PHP General Mailing Li

[PHP] String: Arrays of arrays.

2004-12-22 Thread Song Ken Vern-E11804
Hi, I have an array of array of strings :- $g1 = array("453", "592"); $g2 = array("e14", "e15", "e13"); $groups = array($g1, $g2); I traverse and print out the value using :- for ($i = 0; $i < sizeof($groups); $i++) { for ($j = 0; $j < sizeof($groups[$i]); $j++) { pr