Re: [PHP-DB] vBulletin board

2002-06-15 Thread Neil Thomson
why dont u just use phpbb? it is opensource & free http://phpbb.com/ Neil - Original Message - From: "Leif K-Brooks" <[EMAIL PROTECTED]> To: "John StoneCold" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, June 16, 2002 8:30 AM Subject: Re: [PHP-DB] vBulletin board > That'

Re: [PHP-DB] Re: PHP IDE

2002-02-23 Thread Neil Thomson
i use PHP CODER PR2 the newer version of it i think suks. so if u want it ask. I like it tons. Neil - Original Message - From: ACEAlex <[EMAIL PROTECTED]> To: php-db <[EMAIL PROTECTED]> Sent: Sunday, February 24, 2002 8:38 AM Subject: Re: [PHP-DB] Re: PHP IDE > I use homesite just to ta

Re: [PHP-DB] Protecting php scripts from source being downloaded

2002-01-09 Thread Neil Thomson
u can download a php page from a download manager ? i just tryed with flashget... & it phrased the php page into html first.. ? ? if you want to protect your say.. variables file from some1 trying in the address of it. heres a simple way. in the variables file include @header(status: error 404);

Re: [PHP-DB] mysql_num_rows

2002-01-08 Thread Neil Thomson
dont u need to add the $sql to the mysql_query... as in mysql_query($sql,$db); ?? i thourhgt u did ? anyways.. might be wrong. Neil - Original Message - From: Ford, Mike [LSS] <[EMAIL PROTECTED]> To: 'Gurhan Ozen' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 08, 20

Re: [PHP-DB] database/form help needed

2002-01-06 Thread Neil Thomson
try using the rand function.. eg... $rand=rand(1,10); but that migth get a same number more then once... my suggestion is this $checkboxid="1"; // Start of the loop echo ""; // end of loop $checkboxid = $checkboxid + 1; that should work i think havent tested that code. but thats my idea.

Re: [PHP-DB] Building a user preference site

2002-01-05 Thread Neil Thomson
use either sessions or cookies. ur choice. look @ the manual on both. Neil - Original Message - From: Danny Kelly <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 05, 2002 6:42 PM Subject: [PHP-DB] Building a user preference site > Hello, > I am trying to figure out

Re: [PHP-DB] hiding blank MySQL results?

2002-01-05 Thread Neil Thomson
ok i get your point. how about "; } if ($discription !=""){ $discription1=$discription""; } if ($link !=""){ $link1=$link""; } echo "$title1 $discription1 $link1"; ?> the != means if does not equal. so basically that should i think do. if the title does not equal nothing then add a to the end