[PHP] Inline or not inline

2002-02-21 Thread Chris Wright
Hi Is it possible to have PHP spawn a second process that will run independently of the script that started it? This is what I'm trying to do : 1 - page.php > browser calls it, starts to execute 2 - if (condition) > fetch information from server.x via http pipe, log to database 3 - display page

RE: [PHP] force refresh?

2002-02-07 Thread Chris Wright
Probably only by writing javascript to the window using php. --- Christopher Wright 303 447 2496 x 107 www.netinfra.com "We'll take care of it." "Net Infrastructure has definitely helped our company, even though we're not in the US, Net Infrastructure has been a key part in the success of our b

RE: [PHP] Preventing Identical Form Fields

2002-02-07 Thread Chris Wright
With javascript onSubmit, but that ain't php, so with if($form1==$form2){sendthembackwitherrors()} --- Christopher Wright 303 447 2496 x 107 www.netinfra.com "We'll take care of it." "Net Infrastructure has definitely helped our company, even though we're not in the US, Net Infrastructure has b

RE: [PHP] More image questions...

2002-01-17 Thread Chris Wright
Zara: >> If I have a user input a file in an html form for uploading, is there any way that I can pull the name of the file that was uploaded out some how? << If your file field is called "the_file" $the_file_name $the_file_type $the_file_size are all created and contain good stuff to play wit