[PHP] php chat or customer support center

2001-05-08 Thread Black S.

We have all seen these one-on-one chat systems placed on sites like home.com
and others. You can click on a button and chat live with a customer service
agent. Does anyone know if a PHP based system like this exists? If not, what
are your recommendations for such a system? Java?

Thanks All,
Blake S.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Is their a function for this?

2001-04-04 Thread Black S.

Basically I have array variables, lets say:
---
$folder[0] = "basic";
$folder[1] = "standard";
$folder[2] = "knowledge";

Fruther down in the code:
---
$totalsub_basic = "10";
$totalsub_standard = "24";
$totalsub_knowledge = "12";

Everything runs fine until "$total_count" how do I take the value of
$folder[$i], lets say "standard" append that to "totalsub" and get the value
of "$totalsub_standard"?
---
$i = 0;
while($i < $level_0_links) {
echo "First While Loop";

if (ereg("^/$folder[$i]?", $PHP_SELF)) {
  $a = 0;
  $total_count = (eval("$totalsub_$folder[$i]")); <---
  while ($a < $total_count) {
  echo "$a";
  $i++;
  }
}

$i++;
}

Thanks Everyone!




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Properly formatted ereg??

2001-04-10 Thread Black S.

How would I write an ereg to use the value of $PHP_SELF and look for a
distinct folder? For instance. say I have:

ereg("^/anythinghere/coverage/anthythinghere.html?", $PHP_SELF
   ||
|||

So basically it is looking for the "/coverage/" folder, anything can come
before it, and anything after it??

Thanks All!!



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] PHP Not Working

2001-06-29 Thread Black S.

Very strange situation, PHP Version 4.0.3 on one of my production web
servers has started to loose different functionality?? The OS is
Apache/1.3.12 (Unix) (Red Hat/Linux 6.2) PHP/4.0.3 mod_perl/1.21, PHP was
compiled as a module with apxs. The strange thing is, some virtual host
directories have some of the things other Virtual host directories don't
have or quite working. It started with the include() function not working
and has now moved to the mail() function not working. Has anyone
excperienced similiar problems or know of a fix??

Thanks,

Blake



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Function No Longer works

2001-06-29 Thread Black S.

I have found the problem with my previous post and PHP functions no longer
working. It seems the code:

include("http://www.domain.com/path/to/file.txt";);

no longer works? If I type in a complete directory path then it works great,
but no Internet include, any one know why?

Thanks



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]