Re: [PHP] Programming Question

2009-04-29 Thread Kyle Smith
David Stoltz wrote: Hi Folks, I'm a PHP newbie - but this question really isn't about PHP per se', it's more about programming in general, and how to do something... I'm redesigning an ASP site with Dreamweaver CS4, so I'll be sticking to using ASP technology The site will use horizontal

Re: [PHP] Programming question - New to PHP

2006-07-02 Thread Russbucket
On Wednesday 28 June 2006 19:55, Chris wrote: Russbucket wrote: I took an example of a script from the PHP documentation and try to connect to my database. If I leave in the or die part of line 3, I get nothing, if I comment out that part I get the echo message on line 4. ?php //

Re: [PHP] Programming question - New to PHP

2006-06-30 Thread Richard Lynch
On Wed, June 28, 2006 6:58 pm, Russbucket wrote: I took an example of a script from the PHP documentation and try to connect to my database. If I leave in the or die part of line 3, I get nothing, if I comment out that part I get the echo message on line 4. ?php // Connecting and

Re: [PHP] Programming question - New to PHP

2006-06-29 Thread Dave Goodchild
On 29/06/06, Chris [EMAIL PROTECTED] wrote: Russbucket wrote: I took an example of a script from the PHP documentation and try to connect to my database. If I leave in the or die part of line 3, I get nothing, if I comment out that part I get the echo message on line 4. ?php //

RE: [PHP] Programming question - New to PHP

2006-06-29 Thread Jeremy Schreckhise
Try $link = mysql_connect('localhost',$youruser,$yourpassword) or die(); mysql_select_db('yourdb'); $query = 'SELECT * FROM Moses_Lake_Lions'; if(!$result = mysql_query ($query,$link)) { // do error checking here } Jeremy

Re: [PHP] Programming question - New to PHP

2006-06-29 Thread Russbucket
On Thursday 29 June 2006 06:29, Jeremy Schreckhise wrote: snip Try $link = mysql_connect('localhost',$youruser,$yourpassword) or die(); mysql_select_db('yourdb'); $query = 'SELECT * FROM Moses_Lake_Lions'; if(!$result = mysql_query ($query,$link)) {

Re: [PHP] Programming question - New to PHP

2006-06-28 Thread Ligaya Turmelle
Russbucket wrote: I took an example of a script from the PHP documentation and try to connect to my database. If I leave in the or die part of line 3, I get nothing, if I comment out that part I get the echo message on line 4. ?php // Connecting and selecting the database $conn =

Re: [PHP] Programming question - New to PHP

2006-06-28 Thread Chris
Russbucket wrote: I took an example of a script from the PHP documentation and try to connect to my database. If I leave in the or die part of line 3, I get nothing, if I comment out that part I get the echo message on line 4. ?php // Connecting and selecting the database $conn =

Re: [PHP] programming question

2003-02-14 Thread David T-G
Thomas -- ...and then Thomas Moore said... % ... % showMasterCategories($year, $model_id, $syear_model_id, $keyword, $make_id, % $display_mode, $catid) % { % $category_array2[$i] = getParent($category_id, $year_model_id, $i, $catid); % } % % % function getGrandParent($cat_id,

Re: [PHP] programming question

2003-02-13 Thread olinux
You could make $category_array2 global function getGrandParent($cat_id, $year_model_id, $x) { global $category_array2 ... olinux --- Thomas Moore [EMAIL PROTECTED] wrote: I am trying to return a variable from a recursive function. If the recursive function gets called, the nothing is