Hi,
I'm new to the list and I've search internet and didn't find an answer
to my problem.
I'm converting a perl script to PHP and I've done almost everything.
The only part of the code that I didn't get working on PHP was:
(PERL CODE)
foreach ($b_length,$b_mac,$b_crlf,$b_crlf,$a_body) {
Javed Khan wrote:
Hello All,
I have php script which performs various sql operations, like insert row in table A, delete row from Table B and Update rows in table C. Now I would like to display all those tables that are affected by my script. Can anyone send me a function or script if it is alr
Hello All,
I have php script which performs various sql operations, like insert row in
table A, delete row from Table B and Update rows in table C. Now I would like
to display all those tables that are affected by my script. Can anyone send me
a function or script if it is already available?
Dear All,
Mine is FC6 System.
So, the php come with it...
If disable the function of phpinfo(), then all of the setting will be
returned to the default !
Any solution for help ?
Thanks !
Edward.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
brian debottari (sin7) wrote:
> I have a site that does the following:
>
> You fill out a form with client info, click process, it moves to another
> page that calls a few php functions i wrote (sending client welcome
> email, adding client details to database and a few other things). What I
> wan
I have a site that does the following:
You fill out a form with client info, click process, it moves to
another page that calls a few php functions i wrote (sending client
welcome email, adding client details to database and a few other
things). What I want the page to do is delay some of t
PHP can't do that for you but Javascript can. Here's roughly 3 million (no
joke) examples of what you'd like to accomplish:
http://www.google.com/search?q=javascript+focus+first+input
On 4/26/06, marvin hunkin <[EMAIL PROTECTED]> wrote:
>
> Hi.
> is there any php or java script function, where i
Hi.
is there any php or java script function, where i can embed into my php or
html file, to set focus on to the first form field, like a text box, to go
to that field first, and not to go to the link or button first.
if there are any tips, tricks, or links or code examples, how to fix this
pro
At 11:46 AM 2/12/2006, Alain Roger wrote:
I have a link in my web page and when user click on this link, i would like
to execute a PHP function with a parameter.
how can i do it ?
If you're using PHP in the usual way as a server-side script, it
doesn't run in the same time-frame as user intera
Alain Roger wrote:
I have a link in my web page and when user click on this link, i would
like to execute a PHP function with a parameter.
You'll need to initiate a new request. Browsers don't execute PHP code.
Chris
--
Chris Shiflett
Brain Bulb, The PHP Consultancy
http://brainbulb.com/
--
Hi,
I have a link in my web page and when user click on this link, i would like
to execute a PHP function with a parameter.
how can i do it ?
ex :
...
">test
but this does not work :-(
thanks for help.
Alain
On Monday 26 July 2004 06:21, Shawn McKenzie wrote:
> O.K. So I've written my application and debugged it, and now I want to
> try and optimize the speed. I have written a little test script to test
> the time of each PHP function that I can use in a certain situation
> (ereg, eregi, strpos). P
O.K. So I've written my application and debugged it, and now I want to
try and optimize the speed. I have written a little test script to test
the time of each PHP function that I can use in a certain situation
(ereg, eregi, strpos). Problem is, no matter what I do, the first
function I test
--- Mike Migurski <[EMAIL PROTECTED]> wrote:
> > Anyone know what is the php function for finding the length of the
> > array? I haven't found the answer at
> > http://us3.php.net/manual/en/ref.array.php .
>
> You are aware that all the available array functions are listed about
> halfway down tha
> Anyone know what is the php function for finding the length of the array?
>I haven't found the answer at http://us3.php.net/manual/en/ref.array.php .
You are aware that all the available array functions are listed about
halfway down that page, right?
--
Or you can use sizeof() which is an alias for count()
Scott Fletcher wrote:
***
This Email Has Been Virus Swept
***
Ah! Thanks!!!
"Chris Hayes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
At 1
Ah! Thanks!!!
"Chris Hayes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> At 15:44 6-1-04, you wrote:
> >Hi!
> >
> >Anyone know what is the php function for finding the length of the
array?
> >I haven't found the answer at http://us3.php.net/manual/en/ref.array.php
.
> looking
At 15:44 6-1-04, you wrote:
Hi!
Anyone know what is the php function for finding the length of the array?
I haven't found the answer at http://us3.php.net/manual/en/ref.array.php .
looking for the number of elements? ->count($arrayname)
--
PHP General Mailing List (http://www.php.net/)
To
Hi!
Anyone know what is the php function for finding the length of the array?
I haven't found the answer at http://us3.php.net/manual/en/ref.array.php .
Thanks,
FletchSOD
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
hi,
while using ipman php script and come accross this problem...
function ip_mask_valid($mask)
{
$maskroot = (int)sqrt(abs(ip2long($mask)));
return ( (float)$maskroot == sqrt(abs(ip2long($mask))) );
}
this function is not returning true/successfull output when say given
255.255.254.0 netm
--- Merlin <[EMAIL PROTECTED]> wrote:
> Unfortunatelly this is not what I mean.
>
> Have a look on this:
> http://www.globosapiens.net/hially
> A php page is redirecting this 404 error to another page, but I
> would like to have the URL stay the same like it is done on php.net
Then don't redirect
* Thus wrote Ivo Fokkema ([EMAIL PROTECTED]):
> > > Use a path relative to your httpdocs for your error document, e.g.
> > > ErrorDocument 404 /myerrorpage.php
> > > instead of
> > > ErrorDocument 404 http://mysite/myerrorpage.php
> > Unfortunatelly this is not what I mean.
> I think it is. When yo
* Thus wrote Merlin ([EMAIL PROTECTED]):
> this is a reply on:
>
> > I am wondering how on php.net the search for functions is done.
> You
> > can add
> > any function just behind the php.net
> > like php.net/phpinfo and it will point you right through it. I
> know how to
> > redirect this as a 4
> > Use a path relative to your httpdocs for your error document, e.g.
> > ErrorDocument 404 /myerrorpage.php
> > instead of
> > ErrorDocument 404 http://mysite/myerrorpage.php
> Unfortunatelly this is not what I mean.
I think it is. When you use a relative path in the .htaccess, the URL will
not c
this is a reply on:
> I am wondering how on php.net the search for functions is done.
You
> can add
> any function just behind the php.net
> like php.net/phpinfo and it will point you right through it. I
know how to
> redirect this as a 404 error in apache to another file, but then
the
> url is
>
Hello,
This is a reply to an e-mail that you wrote on Tue, 22 Jul 2003 at
21:15, lines prefixed by '>' were originally written by you.
> Hi there,
> I am wondering how on php.net the search for functions is done.
You
> can add
> any function just behind the php.net
> like php.net/phpinfo and it wi
Hi there,
I am wondering how on php.net the search for functions is done. You can add
any function just behind the php.net
like php.net/phpinfo and it will point you right through it. I know how to
redirect this as a 404 error in apache to another file, but then the url is
changing. In the php.net
Hello,
I performed some tests using the backticks operator
and the system() call.
This is my.php :
uh
I am
";
$k = sprintf( `dir $fldr` );
$k = str_replace ("<", "<", $k );
$k = str_replace (">", ">", $k );
$k = str_replace ("\n", "", $k );
echo "\$k = $k";
?>
this is
IL PROTECTED]>; <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>; "John Holmes" <[EMAIL PROTECTED]>
Sent: Monday, June 10, 2002 1:18 AM
Subject: RE: [PHP] PHP function for listing number of columns in table
yes, I think getting the result set for 'describe $table' or
>Sent: 09 June 2002 18:29
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
>Subject: RE: [PHP] PHP function for listing number of columns
in
>table
>
>No. There is, however, a function that'll tell you how many
columns
>are
>in a result set. So, if you
09 June 2002 18:29
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: [PHP] PHP function for listing number of columns in
table
No. There is, however, a function that'll tell you how many columns
are
in a result set. So, if you select all columns,
rom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, June 09, 2002 12:54 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] PHP function for listing number of columns in table
>
> Pardon the probably stupid question but,
>
> Is there a PHP function for listing number of colum
try
mysql_num_fields()
Hugh
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 08, 2002 9:54 PM
Subject: [PHP] PHP function for listing number of columns in table
Pardon the probably stupid question but,
Is there a PHP function
Pardon the probably stupid question but,
Is there a PHP function for listing number of columns in a mySQL table?
Thanks in advance
JJ Harrison
[EMAIL PROTECTED]
www.tececo.com
I have a capture form using text fields. This form receives data from the
user and then through a php module the data will be stored on an Oracle
database via ODBC. All the data is converted to caps so I am using the
strtoupper() function. However when the user writes characters like
ñ the s
Let me know if you find anything out about this because it's something I too
would like to use.
- seb
-Original Message-
From: Richard Kitamura - Media Net Link, Inc. [mailto:[EMAIL PROTECTED]]
Sent: 24 July 2001 23:40
To: [EMAIL PROTECTED]
Subject: [PHP] PHP function to extract
Does anyone have a PHP function that extracts EXIF data from a JPG image
that they can send or post? I read about re-compiling with the EXIF flag,
but would rather avoid doing that for a little while.
Thanks,
Richard Kitamura
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
e -
From: "Kato Strandjord" <[EMAIL PROTECTED]>
Newsgroups: php.general
Sent: Thursday, February 08, 2001 5:04 AM
Subject: [PHP] PHP function using a WML variable from a select list as to
access the right data in a MYSQL database
> I use apache server on win2000, php4, mysql and
I use apache server on win2000, php4, mysql and wml which I test local on my
harddrive.
The code under is working fine when I test it on emulators like UP SDK from
phone.com. or other, but i have fooled it to use static variables which is
not the solution i want.
My problem is. How can I use my v
39 matches
Mail list logo