Re: [PHP] Invalid Arguements

2008-11-20 Thread Nathan Rixham
Terion Miller wrote: Nathan, thank you thank you thank you now I get it! your the bomb!! terion joy, glad to hear it -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Invalid Arguements

2008-11-20 Thread Nathan Rixham
On 20 Nov 2008, at 14:37, Terion Miller wrote: I currently have it like this: if you've got it working don't change it :) but to explain: it is possible to send through an array of data from a form, to do this you place multiple elements with the same name followed by [] in the form.. so

Re: [PHP] Invalid Arguements

2008-11-20 Thread Stut
On 20 Nov 2008, at 14:37, Terion Miller wrote: I currently have it like this: Select a Banner Size 728x90 - Leaderboard 160x600 - Skyscraper 300x250 - Square

Re: [PHP] Invalid Arguements

2008-11-20 Thread Terion Miller
I currently have it like this: Select a Banner Size 728x90 - Leaderboard 160x600 - Skyscraper 300x250 - Square 88x31 and 300x250

Re: [PHP] Invalid Arguements

2008-11-20 Thread Lars Torben Wilson
2008/11/19 Robert Cummings <[EMAIL PROTECTED]>: > On Wed, 2008-11-19 at 19:49 +, Ashley Sheridan wrote: >> On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: >> > I am still getting the Invalid arguement error on this implode: >> > >> > if (isset($_POST['BannerSize'])){$BannerSize = >> > i

Re: [PHP] Invalid Arguements

2008-11-19 Thread Jim Lucas
Terion Miller wrote: Actually it did at one point have bannersize[#] # being the numbers 1-however many were there I've since gotten rid of that and made it a select. and gotten rid of the implode all together because it wouldn't work in either case and the more I read the more confused I got. Te

Re: [PHP] Invalid Arguements

2008-11-19 Thread Robert Cummings
On Wed, 2008-11-19 at 19:49 +, Ashley Sheridan wrote: > On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: > > I am still getting the Invalid arguement error on this implode: > > > > if (isset($_POST['BannerSize'])){$BannerSize = > > implode(',',$_POST['BannerSize']);} else {$BannerSize =

Re: [PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
Actually it did at one point have bannersize[#] # being the numbers 1-however many were there I've since gotten rid of that and made it a select. and gotten rid of the implode all together because it wouldn't work in either case and the more I read the more confused I got. Terion On Wed, Nov 19, 2

Re: [PHP] Invalid Arguements

2008-11-19 Thread Nathan Rixham
Ashley Sheridan wrote: On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: I am still getting the Invalid arguement error on this implode: if (isset($_POST['BannerSize'])){$BannerSize = implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} I have moved the ',', from the beginning to

Re: [PHP] Invalid Arguements

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: > I am still getting the Invalid arguement error on this implode: > > if (isset($_POST['BannerSize'])){$BannerSize = > implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} > > I have moved the ',', from the beginning to the end of th

Re: [PHP] Invalid Arguements

2008-11-19 Thread Stut
: Wednesday, November 19, 2008 8:44 AM To: Boyd, Todd M. Subject: Re: [PHP] Invalid Arguements I don't know how to run is_array this is the problem I'm a designer that is stuck doing a coders job On Wed, Nov 19, 2008 at 8:36 AM, Boyd, Todd M. <[EMAIL PROTECTED]> wrote: -O

Re: [PHP] Invalid Arguements

2008-11-19 Thread Andrew Ballard
On Wed, Nov 19, 2008 at 10:39 AM, Terion Miller <[EMAIL PROTECTED]> wrote: > I've been trying to catch on to php on the fly, I started with Cold fusion > years ago then did asp for a long time, for some reason php gives me > problems, it doesn't at all seem intuitive to me or even logical for that

Re: [PHP] Invalid Arguements

2008-11-19 Thread Yeti
> when I use the var_dump as suggested I get: > *Parse error*: syntax error, unexpected '<' in * > C:\Inetpub\wwwroot\WorkOrderSystem\WorkOrder.php* on line *136* I guess that means you tried something like this ... EXAMPLE: ?> Can you see what PHP does not like here? It's the second "http://w

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
From: Terion Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 9:39 AM To: Boyd, Todd M. Cc: PHP General Mailing List Subject: Re: [PHP] Invalid Arguements I've been trying to catch on to php on the fly, I started with Cold fusion years ago then did asp for a long time

Re: [PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
Terion Miller [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 8:44 AM > To: Boyd, Todd M. > Subject: Re: [PHP] Invalid Arguements > > I don't know how to run is_array this is the problem I'm a designer that > is stuck doing a coders job > > > On Wed,

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
Taking this back on-list... From: Terion Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 8:44 AM To: Boyd, Todd M. Subject: Re: [PHP] Invalid Arguements I don't know how to run is_array this is the problem I'm a designer that is stuck doing a coders job On W

Re: [PHP] Invalid Arguements

2008-11-19 Thread Yeti
if you what do you get? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Terion Miller [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 8:32 AM > To: php-general@lists.php.net > Subject: [PHP] Invalid Arguements > > I am still getting the Invalid arguement error on this implode: > > i

[PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
I am still getting the Invalid arguement error on this implode: if (isset($_POST['BannerSize'])){$BannerSize = implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} I have moved the ',', from the beginning to the end of the statement and nothing works is there any other way to do this, bas