Re: [PHP] Best way to do this (sub selects?)

2004-03-04 Thread joel boonstra
On Fri, Mar 05, 2004 at 01:53:45AM +, Richard Davey wrote: > m> I've done this with two queries, the first selecting distinct topics and > m> then running a subquery on all question/answers pertaining to that topic. I > m> was just curious if anybody was handing these situations differently. >

[PHP] Variables not passing...

2004-03-04 Thread Chase
Okay, I am sure this will be painfully simple, but I have looked it over for a couple of hours now, and I am obviously missing something. I am trying to get a start date and a stop date via input from a user to use as variables in a MySQL query, but for some reason, I can't get the variable to pas

Re: [PHP] Variables not passing...

2004-03-04 Thread daniel
Is there a session_start() on the second page ? Also i didnt know u could set an action to a jscript popup, it may not be posting to the second page. What you could try is posting to the second page like a normal post, u need to do something like session_start(); $_SESSION['startdate'] = $_POST[

Re: [PHP] Variables not passing...

2004-03-04 Thread Chase
Thank you! It looks like it was a combination of my NOT using the $_POST and the fact that my JScript wasn't allowing the variables to pass... WHO KNEW?!? THANKS!!! Chase <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is there a session_start() on the second page ? > > Also i di

[PHP] Shopping Carts

2004-03-04 Thread John Nichel
Hi List, I'm looking for people who have experience with the carts listed below to solicit your opinion on said cart. My boss is looking to put something in place, and while I am evaluating these carts, I'm hoping y'all can point out some pluses and minuses that I'm not going to see by not

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread Paul Higgins
If there is something in $_COOKIE, what does that mean? That there is a cookie somewhere? Or is it appending the Session ID to the URL? Paul From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Re: [PHP] PHP Sessions - Cookies Not Saving Date: Fri, 5 Mar 2004 15:24:32 +1100 (EST) Is it

Re: [PHP] Variables not passing...

2004-03-04 Thread Chase
One other irritation for the evening... The MySQL query that I am trying to create needs to use the date the user enters and then add " @ 12:01am EST" to it so it will acutally match the data in the table. Below is my quesry line, but I don't know how to add that chunk to each of the variables...

Re: [PHP] Shopping Carts

2004-03-04 Thread daniel
(like osCommerce requiring register_globals to be turned on) wouldnt suprise me, its highly uncusotmisable off the shelf, u need to spend a long time and write modules for it. My best advice is to go and build it yourself. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread daniel
Ahh is it showing in the url ? Usually it stores as a cookie, or via url, i think that is also set in php.ini, someone want to ellaborate here ? > If there is something in $_COOKIE, what does that mean? That there is > a cookie somewhere? Or is it appending the Session ID to the URL? > > Paul >

Re: [PHP] PHP Sessions - Cookies Not Saving

2004-03-04 Thread Paul Higgins
When I thought about what the compay really told me...it didn't make sense. All I know is that that cookie will not save on my WinXP box, but it will save on my Linux box. Are there any special headers that I could use? Paul From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Re: [PHP

RE: [PHP] looking for php talent...

2004-03-04 Thread bruce
Rasmus, Thanks for the positive response. That said. We are looking for a few select/skilled Web Developers for a few apps/projects that we want to create. The apps are not trivial, and should take a good team of 5-6 developers 3-4 months of effort for each app. This would include the design/spec

RE: [PHP] looking for php talent...

2004-03-04 Thread Jason Davidson
what are the apps? <[EMAIL PROTECTED]> wrote: > > Rasmus, > > Thanks for the positive response. That said. > > We are looking for a few select/skilled Web Developers for a few > apps/projects that we want to create. The apps are not trivial, and should > take a good team of 5-6 developers 3-4 m

[PHP] Re: What to do with my array?? Advise needed....

2004-03-04 Thread Ospinto
You are trying to pass the values in the array unto the next page? Well, try the serialize() function. With this you can have a single hidden field with all the values of a huge array stored in it and passed to another page. Hope this helped. "Ryan A" <[EMAIL PROTECTED]> wrote in message news:[EM

[PHP] Sending arguments to a SP in PHP

2004-03-04 Thread Harpreet K. Singh
I am using PHP and sql server 2000. I have a stored procedure which takes 3 arguments. The first argument is a string and the rest 2 are integers. For some reasons the call to the stored procedure is being trimmed. My call is as follows $oldquery="select var1,var2,var3,var4. from table order

<    1   2