Re: [PHP] OT - PHP Webhost Dedicated Server

2006-04-11 Thread sgsweb
Suhas wrote: Hello, Any suggestions for Dedicated PHP Webhost. The current service provider is ok but Customer service is unsatisfactory. Very bad experience. Thanks for your help in advance, SP http://www.websulting.com/ -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] int to string

2006-04-06 Thread sgsweb
Hi Tanner, Here's a completely working piece of code that I got from my hosting company. This looks like it does exactly what you want to do. I am also including the output in the bottom of this e-mail. sunil. ? /** ** **

Re: [PHP] Is there a way to get multiple values for a singleinput in a form submission?

2006-03-23 Thread sgsweb
Hi Mark, Actually you can access this variable within Javascript in the following manner: function chgablacted() { box = regs['myselect[]']; value = box.options[box.selectedIndex].value; if (value == 'some value') { ... } else { ... } } The name of the variable will include the

[PHP] PERL Caller equivalent function

2006-03-20 Thread sgsweb
Hi, Perl has a function named caller with the following signature and return values: ($package, $filename, $line, $subroutine, $hasargs, $wantarray, $evaltext, $is_require) = caller($i); This function returns information pertaining to the calling routine, such as the name of the