On Sun, 2010-02-07 at 23:45 -0500, Paul M Foster wrote:
> On Sun, Feb 07, 2010 at 11:20:18PM -0500, David Mehler wrote:
>
> > Hello,
> > I'm trying to set up a web site. This site has multiple stylesheets,
> > one default stylesheet that should be used if the other is not chosen.
> > The second i
On Sun, 2010-02-07 at 23:24 -0800, TerryA wrote:
> Hi Carlos
>
> I looked at the documentation for hours but don't see any solution. I'm
> uploading a sample file here. The full file contains around 100 properties
> but the uploaded file has just one. I need to extract data from this file to
> wr
It was a mistake while copying the code. I had '\n' only.
On Sun, 07 Feb 2010 21:31:55 +0530 wrote
>Phani Raju wrote:
> I am trying to open a blocking stream using fsockopen. I want to write and
> read XML input/output from a server. After opening the steam I will send a
> XML request to
Hi Guys
Thanks for all your input. This forum is great! I can get the attributes OK
but I can't code the checking routing correctly. This is what I have:
Many thanks again for your input. I tried this but it only gives me the data
for each element. I need to be able to access the attributes of t
On Sun, Feb 07, 2010 at 11:20:18PM -0500, David Mehler wrote:
> Hello,
> I'm trying to set up a web site. This site has multiple stylesheets,
> one default stylesheet that should be used if the other is not chosen.
> The second is a high contrast stylesheet and can be selected by user's
> who need
hello,
Hi ryan, i am not sure i am getting you on what ya want , is this
something like what ya want, the code below which i wrote?
function get_value()
{
var el = document.form_name.elements.length;
for(var i =0 ; i<= el ; i++)
{
if(document.form_name.elements[i].type="checkbox")
{
var id =
On Mon, 2010-02-08 at 11:18 +0100, Stephan Ebelt wrote:
> On Sun, Feb 07, 2010 at 11:20:18PM -0500, David Mehler wrote:
> > Hello,
> > I'm trying to set up a web site. This site has multiple stylesheets,
> > one default stylesheet that should be used if the other is not chosen.
> > The second is a
TG wrote:
You could use PHP and cookies (session variables are only useful until the
browser is closed, so it's not as persistant as it sounds like you may
want).
Persistent sessions are possible.
The way I'm doing it in the CMS I am working on is via GET which saves
selection in session.
On 2/7/2010 11:20 PM, David Mehler wrote:
Hello,
I'm trying to set up a web site. This site has multiple stylesheets,
one default stylesheet that should be used if the other is not chosen.
The second is a high contrast stylesheet and can be selected by user's
who need it. I'm also thinking of a
Got it! I corrected my syntax and this code now works as far as I can tell:
xpath('//lot') as $lot) {
echo $lot->numero_lot, 'type ', $lot->type, $lot->identification, '';
echo 'Prix maxi: ', $lot->tarif_max, ' Prix mini: ', $lot->tarif_min,
'';
foreach( $lot->elements->element as
At 11:20 PM -0500 2/7/10, David Mehler wrote:
Hello,
I'm trying to set up a web site. This site has multiple stylesheets,
one default stylesheet that should be used if the other is not chosen.
The second is a high contrast stylesheet and can be selected by user's
who need it. I'm also thinking of
On Mon, 2010-02-08 at 10:00 -0500, tedd wrote:
> At 11:20 PM -0500 2/7/10, David Mehler wrote:
> >Hello,
> >I'm trying to set up a web site. This site has multiple stylesheets,
> >one default stylesheet that should be used if the other is not chosen.
> >The second is a high contrast stylesheet and
Ashley Sheridan wrote:
There is a good reason for having different stylesheets that use
differing colour systems. For example, some people with learning
difficulties benefit from yellow text on blue backgrounds, as apparently
those colours together are better at capturing a users attention for
Hi,
I am writing a simple WSDL client in php as follow:
http://staff.um.edu.mt/cabe2/supervising/undergraduate/owlseditFYP/TemperatureService.wsdl
";
$client = new SoapClient("
http://staff.um.edu.mt/cabe2/supervising/undergraduate/owlseditFYP/TemperatureService.wsdl
");
echo("\nReturning value o
Hey all -
I'm selling a custom PHP solution to FileMaker users. It uses FileMaker's PHP
API, so everyone who has FileMaker Server is already set up to use it, but very
few of them have any knowledge of how to set up a server or do anything PHP
related. But I do want to add some level of code ob
On Mon, Feb 08, 2010 at 10:22:07AM +, Ashley Sheridan wrote:
[...]
> > in CSS there is also the concept of 'alternate stylesheets' build in. A
> > page can basically specify as many stylesheets as it wants where one is
> > default and all others are 'alternate'. The browser will then offer menu
On 8 February 2010 19:32, Brian Dunning wrote:
> Hey all -
>
> I'm selling a custom PHP solution to FileMaker users. It uses FileMaker's PHP
> API, so everyone who has FileMaker Server is already set up to use it, but
> very few of them have any knowledge of how to set up a server or do anything
On Mon, 2010-02-08 at 23:13 +, Richard Quadling wrote:
> On 8 February 2010 19:32, Brian Dunning wrote:
> > Hey all -
> >
> > I'm selling a custom PHP solution to FileMaker users. It uses FileMaker's
> > PHP API, so everyone who has FileMaker Server is already set up to use it,
> > but very
On Feb 8, 2010, at 2:32 PM, Brian Dunning
wrote:
Hey all -
I'm selling a custom PHP solution to FileMaker users. It uses
FileMaker's PHP API, so everyone who has FileMaker Server is already
set up to use it, but very few of them have any knowledge of how to
set up a server or do a
Hello Everyone,
Thank you for the various positions and suggestions.
I'm going for either cookies or sessions, your examples have given me
much to check. For this situation I should probably have mentioned I
need to keep this as simple as possible, so features like a user login
syst
Hello,
on 02/08/2010 05:32 PM Brian Dunning said the following:
> Hey all -
>
> I'm selling a custom PHP solution to FileMaker users. It uses
> FileMaker's PHP API, so everyone who has FileMaker Server is already
> set up to use it, but very few of them have any knowledge of how to
> set up a ser
Hi,
I'm looking for a strategy to do informative error handling at all
levels of my code, yet keep these errors non-fatal as often as
possible.
Adhering to a proper code-standard with regards to error handling
would speed up development of any code (it would shorten the bug-hunt
time a lot), but i
I would also like to hear suggestions on how to fix this mess:
$r = funcA ( funcB ( funcC ( $p ) ) );
if funcB() / funcC() fails, how would you fudge/abort the calling
function in the chain?
One may think that funcA and funcB just check their parameters list
for being "error" arrays, but the prob
On Tue, 2010-02-09 at 07:22 +0100, Rene Veerman wrote:
> I would also like to hear suggestions on how to fix this mess:
>
> $r = funcA ( funcB ( funcC ( $p ) ) );
>
> if funcB() / funcC() fails, how would you fudge/abort the calling
> function in the chain?
> One may think that funcA and funcB ju
24 matches
Mail list logo