Jump to content

kulmacet

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kulmacet's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I am using Eclipse PDT 3.3.1.1 downloaded from the Zend site. To connect to an FTP site with Eclipse install the Remote System Explorer(RSE): In Eclpse Help->Software Updates->Find Install add Search for new features to install Name:RSE URL:http://download.eclipse.org/dsdp/tm/updates/2.0/ This will install the Remote System Explorer to your Eclipse and allow FTP connectivity. Hope this helps.
  2. [!--quoteo(post=363895:date=Apr 12 2006, 12:19 AM:name=sdaniels)--][div class=\'quotetop\']QUOTE(sdaniels @ Apr 12 2006, 12:19 AM) [snapback]363895[/snapback][/div][div class=\'quotemain\'][!--quotec--] thanks for the help, it turens out that i have a different problem this code [code] $query = "SELECT user_sec_level FROM security_users WHERE user_name = '$name' AND user_password = '$password'"; $sec_level = @mysql_query($query); $_SESSION[seclevel] = $sec_level; [/code] the problem that $sec_level is a vale of 'resource id #5' i need it to be the value that is in that that location in the table.... im missing a step... any ideas? [/quote] TRY THIS Some changes have been made to the way you handle the variable $query = "SELECT user_sec_level FROM security_users WHERE user_name = '$name' AND user_password = '$password'"; $sec_level = @mysql_query($query); $set = mysql_fetch_array($sec_level); $security_level = $set["user_sec_level"]; $_SESSION[seclevel] = $security_level;
  3. The following line of code connects fine to MySQL 4.0 but will not connect to MySQL 5.0 code is : @ $db = mysql_pconnect($dbip, $dbuser, $dbpass); when connecting to MySQL 5 get error Warning: mysql_pconnect(): Client does not support authentication protocol requested by server; consider upgrading MySQL Have upgraded to latest client software... Not sure what is the issue. Any help appreciated. Thanks in advance. Kulmacet
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.