|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-28 01:54 UTC] dave_bachtel at yahoo dot com
[2002-06-28 02:06 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 03:00:02 2025 UTC |
Ok, this works: $result = mysql_query("select server from ftpsearch where fullurl like '$query'"); The following queries do not work: 1.) $result = mysql_query("select server, fullurl from ftpsearch where fullurl like '$query'"); 2.) $result = mysql_query("select * from ftpsearch where fullurl like '$query'"); Basically, any request asking for multiple columns to be return fails miserably. Both of these statements work fine when using the mysql.exe client, so I know they are syntactically correct. When two or more colums are requested, it hangs. Not even the html at the top of the page is displayed. The server running PHP is hosted remotely, I have no access to it. The server running mySQL is with me, so I can modify and change it if necessary. Thx, -dave-