php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19046 Resource id #2
Submitted: 2002-08-22 10:07 UTC Modified: 2002-08-22 10:11 UTC
From: jean dot bazin at ifrance dot com Assigned:
Status: Not a bug Package: MySQL related
PHP Version: 4.1.2 OS: linux 7.3
Private report: No CVE-ID: None
 [2002-08-22 10:07 UTC] jean dot bazin at ifrance dot com
Hello,

The return of this script returns "Connexion OK Resource id #2", instead of the value "5".

<?php 
$connexion = mysql_connect("myserver", "login", "pwd") or die ("Error"); 
print ("Connexion OK"); 

$bdd = mysql_select_db("testSMS",$connexion) or die ("Can't find db"); 
$query = "SELECT ticket_id FROM ticket";
$results = mysql_query($query, $connexion);
print ( " $results" );

mysql_close($connexion);
?>

thanxs for helping.

jano

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-08-22 10:11 UTC] derick@php.net
Sorry, but the bug system is not the appropriate forum for asking
support questions. Your problem does not imply a bug in PHP itself.
For a list of more appropriate places to ask for help using PHP,
please visit http://www.php.net/support.php

Thank you for your interest in PHP.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 01:01:28 2024 UTC