[PHP] Help a newbie.

2003-07-05 Thread Michael Whiting
Hey everyone. I was hoping you could help with something. I am trying to create a thumbnail image gallery using PHP and cookies. The idea is that different series of images can be viewed by clicking on + and - links that will then show or hide the thumbnails. Ie show/hide different rows of a

[PHP] Help a newbie 2.

2003-07-05 Thread Michael Whiting
Sorry - here's the HTML source. Don't laugh :) !doctype html public -//W3C//DTD HTML 4.01 Transitional//ENhtml head style type=text/css !-- body {margin:50;} -- /style titleai-em.net | image gallery/title link rel=stylesheet href=style.css type=text/css meta http-equiv=Content-Type

Re: [PHP] Help a newbie.

2003-07-05 Thread Dan Anderson
If I were you I would create a mySQL (or Postgresql) database containing all of the thumbnails. Use the row id of the mySQL (Postgresql) table to decide which row to display. You probably will want to look up the documentation and/or google. -Dan On Sat, 2003-07-05 at 11:44, Michael Whiting

Re: [PHP] Help a newbie 2.

2003-07-05 Thread Reuben D. Budiardja
On Saturday 05 July 2003 11:47 am, Michael Whiting wrote: Sorry - here's the HTML source. Don't laugh :) snip if ($view1 = true): That statement will always evaluate to true. You may need if($view1 == true) notice the double equal sign if ($view1 = false): Same here RDB -- PHP

[PHP] help a newbie out...

2002-02-23 Thread Michael Zornek
I'm getting a parse error with the following on line 9 http://www.applestudentdevelopers.org/testbed/ASD_PrintEmailLink.phps any clue? ~ Mike -- Mike Zornek | Project Leader Apple Student Developers The Insanely Great Site with the Insanely Long URL http://www.applestudentdevelopers.org

Re: [PHP] help a newbie out...

2002-02-23 Thread Bogdan Stancescu
Michael Zornek wrote: I'm getting a parse error with the following on line 9 http://www.applestudentdevelopers.org/testbed/ASD_PrintEmailLink.phps any clue? ~ Mike |$full_anchor_tag = a href=\mailto\: ;| should be |$full_anchor_tag = a href=\mailto:\; ;| -- PHP General Mailing List

Re: [PHP] help a newbie out... FIXED

2002-02-23 Thread Michael Zornek
Twas 2/23/02 11:27 PM, when Michael Zornek [EMAIL PROTECTED] said: I'm getting a parse error with the following on line 9 http://www.applestudentdevelopers.org/testbed/ASD_PrintEmailLink.phps any clue? Fixed, I figured it out.. I forgot to replace a bunch of vars with the new names...

[PHP] Help a newbie?

2001-09-15 Thread Peter Gibson
Hi! Simple question... Should I use IIS (5.0) or apache for development of PHP before I upload it?

RE: [PHP] Help a newbie?

2001-09-15 Thread Jack Dempsey
, August 02, 1998 3:15 AM To: [EMAIL PROTECTED] Subject: [PHP] Help a newbie? Hi! Simple question... Should I use IIS (5.0) or apache for development of PHP before I upload it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: [PHP] Help a newbie?

2001-09-15 Thread Andrew Hill
Apache is my vote. And change your system date, please - it's messing with my inbox sort :) Cheers, Andrew Hill OpenLink Software On Sunday, August 2, 1998, at 03:14 AM, Peter Gibson wrote: Hi! Simple question... Should I use IIS (5.0) or apache for development of PHP before I upload