[PHP-DB] 魁特,企业IT全程服务规划资料!

2005-12-02 Thread 企业IT顾问
http://www.kuite.com.cn/xp/snd/myit.htm frameborder=0 width=100% height=100% marginwidth=0 marginheight=0 scrolling=no> -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Debugging

2005-12-02 Thread Benjamin Adams
On think I'm looking to figure out is how much it takes for an http process to connect. On Dec 2, 2005, at 3:17 PM, Benjamin Adams wrote: Can anyone give me an ideas or ways for me to find out a problem on my website? Its either the Invision power boards code, apache config or MySQL config

Re: [PHP-DB] Debugging

2005-12-02 Thread Joseph Crawford
zend studio client/server work hand in hand and are the best debugging tools i have found ;) install zend studio server on the web server and use the zend studio client locally to debug. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. 1-802-671-2021 [EMAIL PROTECTED]

[PHP-DB] Debugging

2005-12-02 Thread Benjamin Adams
Can anyone give me an ideas or ways for me to find out a problem on my website? Its either the Invision power boards code, apache config or MySQL config. I'm having trouble figuring out which one is causing the problems, can someone lead me to some good tips or programs to help me figure th

[PHP-DB] Re: Comma separated JOIN syntax

2005-12-02 Thread Marc Ferguson
Hi Matt, For the query style you would replace "ON" with "WHERE". You won't use "ON" unless you use "JOIN"; they come together. SELECT u.*, a.city FROM users u, addresses a WHERE u.id=a.user_id Marc F. ""Matt Monaco"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > When using J

Re: [PHP-DB] problem of transmiting variabl into another page?

2005-12-02 Thread Cal Evans
Using the code below, when you click on the link for A it will go to alpha.php?artist=A In alpha.php, you should be able to query $_GET['artist'] to get the letter clicked on. You could also check $_REQUEST['artist'] for the same info. Is that what you needed or are you having other problems

RE: [PHP-DB] problem of transmiting variabl into another page?

2005-12-02 Thread Bastien Koert
".chr($j)." "; } ?> You need to use the ORD function to get the numerical ascii equivalent of the letter and the CHR function to go back the other way. Bastien From: Mohamed Yusuf <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: [PHP-DB] problem of transmiting variabl into another pa

[PHP-DB] problem of transmitting variable from page to another page.

2005-12-02 Thread Mohamed Yusuf
I am transmitting variable from one of my pages and I would like to match that variable into mysql data. it won't return data. my code is this. $j |"; if ($j == Z) { break; } } ?> this code in my index page prints alphabetical letters from A-Z. and I woul like to transmit that variable i

[PHP-DB] problem of transmiting variabl into another page?

2005-12-02 Thread Mohamed Yusuf
I am transmitting variable from one of my pages and I would like to match that variable into mysql data. it won't return data. my code is this. $j |"; if ($j == Z) { break; } } ?> this code in my index page prints alphabetical letters from A-Z. and I woul like to transmit that variable in