RE: [PHP] php and sqlserver2000

2002-01-16 Thread Jon Haworth
> i have many problems with my web site. > i have sql server 2000 and php4 but i not connect with my server and the > result pages don't show. > somebody help me :-( I use PHP 4.1 and SQL Server 2000 together with no problems - please post your code and explain exactly what you're tryin

Re: [PHP] Is there Any way to call Non-Existent function in PHP

2002-01-16 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 16-01-02 at 11:21 * S. Murali Krishna said > Hai ALL > Is there any way to capture function call in PHP > and redirect to some other function if that function doesn't exists. > > Perl programmers remind AUTOLOAD method in a

Re: [PHP] Beginner: Open URL

2002-01-16 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 16-01-02 at 10:47 * Tommi Trinkaus said > Hi Nick > > > I'm not sure what you mean can you be a little more detailed? > > I can tell however that PHP is *not* a substitute for HTML. If you want > > something like the tag then *use* the

Re: [PHP] Is there Any way to call Non-Existent function in PHP

2002-01-16 Thread Neil Freeman
You can use function_exists() to check whether a function actually exists: eg: if (function_exists('imap_open')) { echo "IMAP functions are available.\n"; } else { echo "IMAP functions are not available.\n"; } HTH Neil "S. Murali Krishna" wrote: > Hai ALL > Is there any way to

[PHP] Is there Any way to call Non-Existent function in PHP

2002-01-16 Thread S. Murali Krishna
Hai ALL Is there any way to capture function call in PHP and redirect to some other function if that function doesn't exists. Perl programmers remind AUTOLOAD method in a package. S.Murali Krishna [EMAIL PROTECTED] = We grow slow trying

Re: [PHP] Beginner: Open URL

2002-01-16 Thread Tommi Trinkaus
Hi Nick > I'm not sure what you mean can you be a little more detailed? > I can tell however that PHP is *not* a substitute for HTML. If you want > something like the tag then *use* the tag. in fact i want something like the tag, but the new url should be opened within a php if-statement, not

[PHP] RE: Beginner: Open URL

2002-01-16 Thread Tim Ward
If you mean redirection, then try the header() function in the on-line manual. Tim www.chessish.com -- From: Tommi Trinkaus [SMTP:[EMAIL PROTECTED]] Sent: 16 January 2002 08:04 To: [EMAIL PROTECTED] Subject: Beginner:

Re: [PHP] StripSlashes() & quotes in text boxes

2002-01-16 Thread Jimmy
Hi Robert, > administrator to edit the item description. When displayed in a text box the > description just shows 17. > The only solution I can find is to swap the quote marks for " > when storing the item initially you can use htmlspecialchars() function to convet all the html chars. The issue

php-general Digest 16 Jan 2002 09:13:19 -0000 Issue 1114

2002-01-16 Thread php-general-digest-help
php-general Digest 16 Jan 2002 09:13:19 - Issue 1114 Topics (messages 80630 through 80671): Re: Another question - not exactly what i was looking for 80630 by: mike cullerton 80631 by: R'twick Niceorgaw 80633 by: Christopher William Wesley mysql_insert_id? 8

Re: [PHP] Re: benchmarking php scripts

2002-01-16 Thread Eugene Lee
On Wed, Jan 16, 2002 at 05:41:34PM +0900, Yasuo Ohgaki wrote: : : Eugene Lee wrote: : > : > Is there a way to benchmark a PHP script to see how intensive it is? : > For example, execution time, CPU/RAM/disk usage, etc. Thanks in advance. : : Try APD. Thanks. It'll be a decent start. Getting

[PHP] Re: Authentication Question

2002-01-16 Thread Bharath Bhushan Lohray
Create another table with info of accounts. Auth_table username(varchar) password(varchar) acno(int) accounts_info_table acno(int) info1 info2() Pass a query == select * from accounts_info_table where acno==$abc == here $abc is the info you extrac

[PHP] Re: Authentication Question

2002-01-16 Thread Bharath Bhushan Lohray
Create another table with info of accounts. Auth_table username(varchar) password(varchar) acno(int) accounts_info_table acno(int) info1 info2() Pass a query == select * from accounts_info_table where acno==$abc == here $abc is the info you extrac

Re: [PHP] Lazy evaluation?

2002-01-16 Thread Jimmy
Hi Alexander, > Does PHP support lazy evaluation? Meaning that if: Yes, it does. -- Jimmy Got a dictionary? I want to know the meaning of life. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: [PHP] Beginner: Open URL

2002-01-16 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 16-01-02 at 09:50 * Tommi Trinkaus said > Hi over there, > > i'm just beginning with php and i wonder if it is possible to show another > url in the current window like the Tag in HTML. > Thanks for any answer... I'm not sure what you m

[PHP] Lazy evaluation?

2002-01-16 Thread Alexander Deruwe
Hey all, Does PHP support lazy evaluation? Meaning that if: if (isset($HTTP_POST_VARS['submit']) && $HTTP_POST_VARS['submit'] == 'create') does PHP stop evaluating after the first condition if $HTTP_POST_VARS is not set? (please CC me in replies) Thanks in advance, -- Alexan

[PHP] StripSlashes() & quotes in text boxes

2002-01-16 Thread Robert MacCombe
Hi, I have had a few problems retrieving MySql entries that contain quote marks. Slashes have been added before storing an item description such as: 17" SVGA Monitor. They've been removed before display too - and the description appears correctly on a page except when displaying in a text box (for

[PHP] Beginner: Open URL

2002-01-16 Thread Tommi Trinkaus
Hi over there, i'm just beginning with php and i wonder if it is possible to show another url in the current window like the Tag in HTML. Thanks for any answer... tommi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

[PHP] Re: benchmarking php scripts

2002-01-16 Thread Yasuo Ohgaki
Eugene Lee wrote: > Is there a way to benchmark a PHP script to see how intensive it is? > For example, execution time, CPU/RAM/disk usage, etc. Thanks in advance. > Try APD. http://apd.communityconnect.com/ It's a degugger and profiler. It does not show all of bench you want, but it works w

[PHP] HTTP AUTHENTICATION Solution

2002-01-16 Thread Bharath
Here is a solution I developed for the HTTP AUTHENTICATION on that buggy Internet Explorer. I want some feedbacks, improvements, Comments... Bharath (B. h. Loh.) bharath_b_lohray (at) yahoo.com Please correspond via email for my convinience and also on the News Group for the benifit of the P

[PHP] disable_functions... Was: about your mail on php list

2002-01-16 Thread Berthold
Hello, disable_functions still works ONLY via setting in php.ini. I think this is a bug. ini_set("disable_functions", "phpinfo"); has no effect, php_value_admin disable_functions phpinfo shows the correct output from phpinfo with one line for disable_functions phpinfo... At least this is a bug.

[PHP] benchmarking php scripts

2002-01-16 Thread Eugene Lee
Is there a way to benchmark a PHP script to see how intensive it is? For example, execution time, CPU/RAM/disk usage, etc. Thanks in advance. -- Eugene Lee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

<    1   2   3