I went to the PhP site to download Php and didnt know exactly what to download. Pls can you tell me what to download and all the softwares I need to download and install in my local pc to be able to use PHP/Mysql locally.
--- [email protected] wrote: > There are 18 messages in this issue. > > Topics in this digest: > > 1. The Missing Session Variable > From: "new_wave_photo" > <[EMAIL PROTECTED]> > 2. Tutorials > From: Isha Bhaskar > <[EMAIL PROTECTED]> > 3. "contains" statement in MySQL? > From: Bob Sawyer > <[EMAIL PROTECTED]> > 4. Tutorials > From: Isha Bhaskar > <[EMAIL PROTECTED]> > 5. Re: "contains" statement in MySQL? > From: Wade Smart <[EMAIL PROTECTED]> > 6. Advice / Help needed with code! > From: "Christopher E" > <[EMAIL PROTECTED]> > 7. Re: "contains" statement in MySQL? > From: Bob Sawyer > <[EMAIL PROTECTED]> > 8. Re: The Missing Session Variable > From: "Bob" <[EMAIL PROTECTED]> > 9. Re: "contains" statement in MySQL? > From: Bob Sawyer > <[EMAIL PROTECTED]> > 10. Re: "contains" statement in MySQL? > From: Bob Sawyer > <[EMAIL PROTECTED]> > 11. Re: Advice / Help needed with code! > From: Asif Ali <[EMAIL PROTECTED]> > 12. Re: Tutorials > From: Asif Ali <[EMAIL PROTECTED]> > 13. Invitation to join www.phptub.com > From: Asif Ali <[EMAIL PROTECTED]> > 14. Invitation to join www.phptub.com > From: Asif Ali <[EMAIL PROTECTED]> > 15. Re: The Missing Session Variable > From: [EMAIL PROTECTED] > 16. Re: The Missing Session Variable > From: James Keeline <[EMAIL PROTECTED]> > 17. Re: The Missing Session Variable > From: [EMAIL PROTECTED] > 18. Re: The Missing Session Variable > From: "Bob" <[EMAIL PROTECTED]> > > > ________________________________________________________________________ > ________________________________________________________________________ > > Message: 1 > Date: Sun, 26 Mar 2006 17:49:15 -0000 > From: "new_wave_photo" <[EMAIL PROTECTED]> > Subject: The Missing Session Variable > > Hello, > > I have a little problem. I have been writing some > programs using > PHP. All of them use "sessions". Many use "session > variables". One > day the programs are working fine. The next day > puff. Nothing > works. I've done some testing and I believe I have > narrowed the > problem down. It seems that the "session variables" > are being lost > after a <FORM> is submitted. Below are the scripts > from two simple > programs which I believe illustrate my problem. Any > help would be > greatly appreciated ..Bill > > Below are two scripts two distinct files. The > first one simply > sets the session variable and branches to the second > file. Please > understand that all the <HTML> and <BODY> statements > are present but > have been eliminated from here to save space. > > ------- first script or file begins here --------- > <? > session_start(); > $_SESSION['user']="Confused"; > echo("<CENTER>Session_id: ".session_id()); > echo("<BR>User: ".$_SESSION['user']); > ?> > <BR><A > HREF='http://newwavephotog.com/Programs/test_SID02.php?<?php > > echo(SID);?>'>Next Page</A><BR></CENTER> > ------- end of first script or file ------- > > Below is the second script which is called above. > It is > called "test_SID02.php". The first set of "echos" > show that the SID > has been passed from the previous script and that > the session > variable is set. Eveything looks good until I press > the "submit" key > for the form. After I click on the "submit" key, > all the "echo" > statements indicate that SID has been changed and > that the session > variable is blank. Nada. Zero. El Disapeero. > Why? > > ------ second script or file begins here ----------- > <? > session_start(); > /* > first set of echos > */ > echo("<CENTER>Session_id: ".session_id()); > echo("<BR>User: ".$_SESSION['user']); > $self=$_SERVER['PHP_SELF']; > > ?> > <BR> > <FORM action="<?php echo($self);?>" method="POST"> > <input type='TEXT' name='testing'> > <input type='submit' name='submit' value='TEST'> > </FORM><BR> > <?php > /* > second set of echos > */ > echo("Session_id: ".session_id()."<BR>"); > echo("<BR>New Session: ".$_SESSION['user']); > > ?> > > > > > > > > > ________________________________________________________________________ > ________________________________________________________________________ > > Message: 2 > Date: Sun, 26 Mar 2006 13:15:35 -0800 (PST) > From: Isha Bhaskar <[EMAIL PROTECTED]> > Subject: Tutorials > > Hi friends, > > A large collection of tutorials downloads are > available at www.itguide.tk > Tutos are really good. You can find good interview > questions also there.Try it. > > Isha > > > --------------------------------- > Yahoo! Messenger with Voice. Make PC-to-Phone Calls > to the US (and 30+ countries) for 2¢/min or less. > > [Non-text portions of this message have been > removed] > > > > > > ________________________________________________________________________ > ________________________________________________________________________ > > Message: 3 > Date: Sun, 26 Mar 2006 15:35:16 -0800 (PST) > From: Bob Sawyer <[EMAIL PROTECTED]> > Subject: "contains" statement in MySQL? > > I'm in dire need of assistance -- the site I'm > working on is one that > I've "inherited" from another developer and have > been cleaning up his > code (orignally done in ASP.net) and converting to > PHP. > > Anyway -- it's a product catalog, and each product > is allowed to be in > multiple categories. The "categories" field in the > DB is of type "TEXT" > and if there is more than one category for the item > to be in, they're > held on separate lines, like such: > > 4 > 2 > 13 > > and so forth. The products are listed on the page > depending === message truncated === I am a Sun, impatiently waiting for dawn. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
