Re: [PHP-DB] Need Simple PHP mysql search engine script

2010-05-23 Thread Chris

On 24/05/10 16:01, nagendra prasad wrote:

Hi Chaitanya,

I have used the below script but its not meeting my requirements. What I
need is that I have a database in which their are names which I wanted to
use as keywords. I want to  search with only one variable called Names. the
other stuff will come along with it. Please help me if anyone knows a good
script for it.


Requirements that specific won't have a generic script.

Start coding..

--
Postgresql & php tutorials
http://www.designmagick.com/


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Need Simple PHP mysql search engine script

2010-05-23 Thread nagendra prasad
Hi Chaitanya,

I have used the below script but its not meeting my requirements. What I
need is that I have a database in which their are names which I wanted to
use as keywords. I want to  search with only one variable called Names. the
other stuff will come along with it. Please help me if anyone knows a good
script for it.

PS: I have tried my own script and a number of scripts available on the net
but it didn't worked as per my requirements.

Best,
Guru.


Re: [PHP-DB] Need Simple PHP mysql search engine script

2010-05-23 Thread Chaitanya Yanamadala
most of the users use this for the search engine..
http://www.sphider.eu/


Chaitanya

"A man can get discouraged many times but he is not a failure until he stops
trying..."

"The difference between 'involvement' and 'commitment' is like an
eggs-and-ham breakfast: the chicken was 'involved' - the pig was
'committed'."



On Sun, May 23, 2010 at 11:54 PM, nagendra prasad
wrote:

> Hi All,
>
> I need a simple PHP mysql search engine script. I know their are lots of
> scripts available on the net, but I need a script which is tested by you or
> any experts. Please help me.
>
> Best,
> Guru.
>


Re: [PHP-DB] Call two class object failed

2010-05-23 Thread Chris

On 24/05/10 11:55, win.a wrote:

Hi my friend,i wrote two classed on is user,the other is db .The user
have a property which from the db class object .


When i writing my application have both class object invoked at the
same time ,just like
$user_a = new user($para);
$db_a = new db()

Then the problem occurs only one of the class object could work, or
$user_a or $db_a not both,What 's problem of my code




The two class works well in the single application when only of them
are invoked ,i cost me much time to deal it
Any advice and suggestions are thankful !


You'll need to include the 'db' class first if that's in a separate file 
before you include the 'user' class.


Apart from that, what's the error you're getting?

--
Postgresql & php tutorials
http://www.designmagick.com/


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Call two class object failed

2010-05-23 Thread win.a
Hi my friend,i wrote two classed on is user,the other is db .The user
have a property which from the db class object .


When i writing my application have both class object invoked at the
same time ,just like
$user_a = new user($para);
$db_a = new db()

Then the problem occurs only one of the class object could work, or
$user_a or $db_a not both,What 's problem of my code

The following is my source code:

class db{
/**
 * Constructor
 */

var $result;
var $conn;

function  db(){
require_once BOC_BASE_DIR.'/config/db.config.inc';
$this->conn = mysql_connect($db_host,$db_user,$db_pass);
//$this->conn = @mysql_connect($db_host,$db_user,$db_pass);
if (!$this->conn) {
$this->db_print_error("DB connect failed");
}

if (!mysql_select_db($db_name,$this->conn)) {
$this->db_print_error("DB select failed");
}
}

class user{
private $u_sn;
private $u_id;
private $u_name;
private $u_sex;
private $u_image;

//more property

private $u_info;


/**
 * Constructor
 */
function __construct($name){
$sql = "select * from boc_user where u_name = '$name'";
$u_query = new db();
$this->u_info = array();
$u_query->db_query($sql);
$this->u_info =$u_query->db_fetch_row();

$this->u_sn = $this->u_info['u_sn'];
$this->u_id = $this->u_info['u_id'];
$this->u_name = $this->u_info['u_name'];
$this->u_sex = $this->u_info['u_sex'];

   //more are give the property value

}


The two class works well in the single application when only of them
are invoked ,i cost me much time to deal it
Any advice and suggestions are thankful !


All you best

What we are struggling for ?
The life or the life ?

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Need Simple PHP mysql search engine script

2010-05-23 Thread nagendra prasad
Hi All,

I need a simple PHP mysql search engine script. I know their are lots of
scripts available on the net, but I need a script which is tested by you or
any experts. Please help me.

Best,
Guru.