Safari Studio Inc. is looking for qualified
designers/developers for a full time/part time
position. This is position is available for
designers/developers that want to work in a company
that is growing.
click here to fill in the application form
http://www.safaristudio.net/hr/
Job Number 1 : PH
At 4:15 PM -0700 7/1/06, BBC wrote:
>I thought I have typed this function correctly, and I didn't know why my
>browser couldn't run these script :
>$filename = 'test.jpg';
>$percent = 0.5;
>header('Content-type: image/jpeg');
>list($width, $height) = getimagesize($filename);
>$newwidth = $width * $
Ryan A wrote:
Its a mis-spelling of two words taken out of context,
its actually "sock her" and meant for Hillary Clinton
Hehehe, n1! :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I thought I have typed this function correctly, and I didn't know why my
browser couldn't run these script :
and the error output is : "call to undefined function"
btw, I'm using PHP 4.1.1. Is there any possible that my PHP version can not
run those script?
So, what is the best solution for my pro
Richard Lynch wrote:
> On Fri, June 30, 2006 11:11 am, Mark wrote:
>> Here is a problem I am seeing,
>>
>> A browser hits a site the uses frames, for the sake of argument, lets
>> call
>> this site a squirrelmail web mail server.
>>
>> The browser seems to spawn a number of requests at the same ti
--- Martin Marques wrote:
>
> On Sat, 1 Jul 2006 07:03:54 -0700 (PDT), Ryan A
> <[EMAIL PROTECTED]> wrote:
> >
> >> Soccer... what's that?
> >>
> >> tedd
> >
> > Its a mis-spelling of two words taken out of
> context,
> > its actually "sock her" and meant for Hillary
> Clinton
>
> Actually,
On Sat, 1 Jul 2006 07:03:54 -0700 (PDT), Ryan A <[EMAIL PROTECTED]> wrote:
>
>> Soccer... what's that?
>>
>> tedd
>
> Its a mis-spelling of two words taken out of context,
> its actually "sock her" and meant for Hillary Clinton
Actually, Hillary wasn't the one "sucking". ;-)
--
---
You can simulate singletons in PHP 4 as well. But you've just eliminated
every option for accessing a non-local object inside a function. You've got
4 options. Pick one, but I'm fairly certain there is no magical 5th. :-)
On Saturday 01 July 2006 13:02, sempsteen wrote:
> Thanks Larry but i'm
Dear group,
Apache's WebDav-features do not fulfill our requirements concerning
file-management since we have to manage complex access-rights to files by
our own logic. HOW can we create our own WebDav-Server with PHP ? Are there
any alternatives? I couldn't find any examples so far ...
Thankf
It sounds like your only other option is a singleton, which works only if
you're comfortable having only one instance of a, ever. The following code
also only works in PHP 5.
class A {
static obj;
static instance() {
if (! self::obj instanceof A) {
self::obj = new A();
}
> Soccer... what's that?
>
> tedd
Its a mis-spelling of two words taken out of context,
its actually "sock her" and meant for Hillary Clinton
;))
Cheers!
Ryan
--
- The faulty interface lies between the chair and the keyboard.
- Creativity is great, but plagiarism is faster!
- Sm
I think they call it 'futbol' in your native language tedd. Or was that
'maize'.. it was one or the other :)
-TG
= = = Original message = = =
At 1:26 AM -0300 7/1/06, Martin Alterisio wrote:
>That's all folks. Coming up next: an innovative realistic soccer simulation
>game: "Fix the World Cup"
At 1:26 AM -0300 7/1/06, Martin Alterisio wrote:
>That's all folks. Coming up next: an innovative realistic soccer simulation
>game: "Fix the World Cup". Everything from bribing a referee to fixing the
>team sorting. Do you lack the morality to make your team the world champion
>by any means necess
On 7/1/06, chris smith <[EMAIL PROTECTED]> wrote:
On 7/1/06, sempsteen <[EMAIL PROTECTED]> wrote:
> hi all,
> i wonder if there is a way of creating an instance of a class and
> reach it direcly from any scope in PHP4. basically what i want is:
>
> class a
> {
>function print()
>{
>
Beauford wrote:
> Hi,
>
> I'm just curious, because I come across this from time to time.
>
> Why does the code below work on Windows and not on Linux. PHP is 5.0 on
> Linux and 4.4 on Windows (still can't get 5 on Windows). The code at the
what stops you from installing php5 on windows? - it's
On Fri, 30 Jun 2006, KermodeBear wrote:
http://pear.php.net/package/DB/
This one has no more development, besides bug fixes. It was merged to
create the one below.
http://pear.php.net/package/MDB2/
--
21:50:04 up 2 days, 9:07, 0 users, load average: 0.92, 0.37, 0.18
-
On Fri, 30 Jun 2006, Jay Paulson wrote:
I'd like to get some feedback on what the list thinks is a good template
engine other than smarty.
PEARs HTML_Template_IT... or mix it with other HTML_Template*
I'd also like to do some quick prototyping using a PHP framework does anyone
have any recom
On Thu, 29 Jun 2006, Charlene Wroblewski wrote:
*joining the fray a little late*
What is the difference between this, Smarty and template.inc?
I have found Smarty to be unusable in my situation where a graphic designer
needs to be able to edit the html and is easily confused by non-html.
So
On 7/1/06, sempsteen <[EMAIL PROTECTED]> wrote:
hi all,
i wonder if there is a way of creating an instance of a class and
reach it direcly from any scope in PHP4. basically what i want is:
class a
{
function print()
{
echo 'sth';
}
}
$a = new a();
and use this "a" instance from
On 7/1/06, Beauford <[EMAIL PROTECTED]> wrote:
Hi,
I'm just curious, because I come across this from time to time.
Why does the code below work on Windows and not on Linux. PHP is 5.0 on
Linux and 4.4 on Windows (still can't get 5 on Windows). The code at the
very bottom is how I got it to work
No it is not empty. But I think I found the bug in the bugtracker...
http://bugs.php.net/bug.php?id=31037
Sorry, but with such a bug in the feature nobody can use it. Even if I
am able to fix it on my local machine (but actually I was not able to do
so until now), whats about my webspace? Mayb
hi all,
i wonder if there is a way of creating an instance of a class and
reach it direcly from any scope in PHP4. basically what i want is:
class a
{
function print()
{
echo 'sth';
}
}
$a = new a();
and use this "a" instance from anywhere ex, in a function that is a
method of anothe
On 7/1/06, BBC <[EMAIL PROTECTED]> wrote:
Yes I'm using MySQL and the DataBases I mean are in different servers
but the problem is I don't know how to set the host.
All input will be very helpful...
Read the documentation, it's all there.
--
Postgresql & php tutorials
http://www.designmagick.c
On 7/1/06, BBC <[EMAIL PROTECTED]> wrote:
I thought I have typed this function correctly, and I didn't know why my
browser couldn't run these script :
and the error output is : "call to undefined function"
btw, I'm using PHP 4.1.1. Is there any possible that my PHP version can not
run those scri
i don't want to:
- declare global $foo,
there is a mistake. it was not global $foo, it is global $a
:)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yes I'm using MySQL and the DataBases I mean are in different servers
but the problem is I don't know how to set the host.
All input will be very helpful...
- Original Message -
From: "Brad Bonkoski" <[EMAIL PROTECTED]>
To: "BBC" <[EMAIL PROTECTED]>
Cc: "PHP"
Sent: Friday, June 30, 2006
I thought I have typed this function correctly, and I didn't know why my
browser couldn't run these script :
and the error output is : "call to undefined function"
btw, I'm using PHP 4.1.1. Is there any possible that my PHP version can not
run those script?
So, what is the best solution for my pro
Yes I'm using MySQL and the DataBases I mean are in different servers
but the problem is I don't know how to set the host.
All input will be very helpful...
- Original Message -
From: "Brad Bonkoski" <[EMAIL PROTECTED]>
To: "BBC" <[EMAIL PROTECTED]>
Cc: "PHP"
Sent: Friday, June 30, 2006
28 matches
Mail list logo