RE: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Jon Snell
to insert/select/update to the database the website works with). Jon Snell -Original Message- From: Nick Norton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 3:57 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Please Help!!!! - Really BASIC stuff! Just put the following instead of a l

RE: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Nick Norton
Just put the following instead of a long switch and keep your file naming conventions consistent include("side_$page.txt"); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list adminis

[PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Martin Hughes
My God!! You're all stars!!! (This is the **fastest** mailing list I've ever joined) If I have *loads* of links (not just audio & visual) is there a way to create a file to include them all? Basically - what I've got is a frameset with side & main frames (side is for nav, main is for... well,

Re: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Rick St Jean
This will allow you to have more control over what pages get edited... but you can use something a little easier like... At 09:02 PM 3/6/01 +, you wrote: >Hi Martin, > >It's important to know that "Stuff" in the Url like this are just >variables. For example : > > foo.php?fruit=apples&

Re: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Phil Driscoll
There are loads of different ways to spit out a text file. The easiest is readfile($Filename) which does exactly what you want, providing that the file already contains sanitised html (eg instead of newlines etc. If not, you could use fread to get the file contents into a variable and then proc

Re: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Philip Olson
Hi Martin, It's important to know that "Stuff" in the Url like this are just variables. For example : foo.php?fruit=apples&dog=snoopy&others=huh&more=yep Now with foo.php we can do this (a few exceptions) : echo "$dog would like to each some $fruit"; And in your case, you have $page so

Re: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Jason Murray
Use include(). Like http://www.jwebmedia.com/ 1 877 525 jWEB -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Martin Hughes
Hi, Could someone please help me? If I have links on my page: Link 1 Here Link 2 Here And then side.php is the following: Blah Where the files to be included are: audio.txt and visual.txt respectively, what php code should I put in my side.php? (the extention of the