Ok, so I know this might start flame wars, but... here goes ;)
It seems suhosin is dead as far as 5.4 goes, now, some make
allegations that it is no longer needed since php has allegedly
incorporated much of its safe guards, but these claims are from self
proclaimed experts (a term i use very loo
This will not work.
As stated in the PHP documentation "Static closures cannot have any bound
object "
A static Closure has no context of "this" just as with any other static
object.
A workaround is to pass in the Closure as a parameter to achieve a similar
result.
class TestClass {
public
number 1-30 for my site.
> >>>
> >>> function rand_from_1_to_30() {
> >>> return 4;
> >>> }
> >>>
> >>
>
> Did you actually try that?
>
> Thanks,
> Ash
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
- Nick
interface Shape {
public double getArea();
}
class Circle implements Shape {
double radius;
public Circle(int double radius) {
this.radius = radius;
}
public double getArea() {
return (radius * radius * 3.1415);
}
}
class Square implements Shape {
double side;
public
OO comes from the heart. You know you have it when everything you look at
turn into objects, attributes, accessors, mutators, and constructors.
When IBM transitioned from functional to OO level programming, they had their
top level engineers walk into a room and tell their employees that 80% of th
Do you have a backtace for this?
What is the gender class doing?
Have u done a global search for keyword "clone"?
On Friday, May 10, 2013, Richard Quadling wrote:
> Hi.
>
> I'm having an issue where I get ...
>
> Fatal error: Trying to clone an uncloneable object of class Smarty_Variable
> in
On Fri, Mar 1, 2013 at 6:32 PM, tamouse mailing lists <
tamouse.li...@gmail.com> wrote:
> On Fri, Mar 1, 2013 at 11:56 AM, Daniel Brown wrote:
> > On Fri, Mar 1, 2013 at 12:54 PM, Jim Giner
> wrote:
> >>
> >> What gives you such optimism? I recently saw a list of languages in
> use and
> >> PHP
On Fri, Mar 1, 2013 at 7:04 PM, Sebastian Krebs wrote:
> 2013/3/2 tamouse mailing lists
>
> > On Fri, Mar 1, 2013 at 11:53 AM, Matijn Woudt wrote:
> > > On Fri, Mar 1, 2013 at 11:49 AM, Richard Quadling > >wrote:
> > >
> > >> Hi.
> > >>
> > >> My heads trying to remember something I may or may
Hello PHP'ers!
Just thought I would introduce myself to the mailing list since I've worked
with PHP for almost 10 years now and yet haven't really been community
active ...
I've developed quite a few open-source projects over the years that I hope
someone here will find as useful as I have ... th
On 7/12/12, Ashley Sheridan wrote:
>
>
> "ma...@behnke.biz" wrote:
>
>>
>>
>>
>>Nick Edwards hat am 12. Juli 2012 um 14:00
>>geschrieben:
>>
>>> On 7/12/12, Gibbs wrote:
>>>
>>> > mysql_query("DE
On 7/12/12, Gibbs wrote:
>>> $connmy=mysql_connect("host","user","pass", TRUE);
>>>
>>> http://php.net/manual/en/function.mysql-connect.php
>>>
>>
>> Thanks, will give that a shot
>>
> I forgot to add your queries will need the new link too. So
>
> mysql_query("DELETE from userprefs where clientr
On 7/12/12, Adam Nicholls wrote:
>
>
>> -Original Message-----
>> From: Nick Edwards [mailto:nick.z.edwa...@gmail.com]
>> Sent: 12 July 2012 12:30
>> To: php-general@lists.php.net
>> Subject: [PHP] database hell
>>
>> Hi
>>
>> W
On 7/12/12, Gibbs wrote:
> On 12/07/12 12:29, Nick Edwards wrote:
>> Hi
>>
>> We have a program that manages users, throughout all database calls
>>
>> created as:
>> $connect = mysql_connect($db_host--other variables);
>> mysql_query("Delete f
Hi
We have a program that manages users, throughout all database calls
created as:
$connect = mysql_connect($db_host--other variables);
mysql_query("Delete from clients where id=$User");
All this works good, but, we need, in the delete function to delete
from another database
$connmy=mysql_conn
tor.
I've been playing with that today, and it looks like a workable solution.
Thanks for your help!
Nick.
--
Nick Chalk.
Loadbalancer.org Ltd.
Phone: +44 (0)870 443 8779
http://www.loadbalancer.org/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
destructor is not called. The
XMLConfig2 class, which does not use inheritance, does have its
destructor called.
The test platform is CentOS 6.2, with PHP version 5.3.3.
What am I missing?
Thanks for your help.
Nick.
--
Nick Chalk.
Loadbalancer.org Ltd.
Phone: +44 (0)870 443 8779
http
Correct. Extensions, such as those found in the PECL repository,
are added in that manner. Things compiled into the core, such as what
you're doing with MySQLi, are automatically loaded regardless, because
they're statically-built into the PHP binary itself.
I was just going to try recompilign with mysql instead of mysqli... I hope
this fixes it.
In terms of mysql being compiled into the core, does this mean I do not have
to add
extension=mysqli.so
extension_dir=/usr/local/php/
include/php/ext/
Thanks in Advance,
* mysqli.max_linksUnlimitedUnlimited mysqli.max_persistentUnlimited
Unlimited mysqli.reconnectOffOff
However, there is no mysqli.so or mysql.so found anywhere? Please help, I
have fallen behind because of this.
Nick.
ql
support, but actually mysql is installed on a different server?
Can I download a precompile mysqli anywhere? The PHP version is 5.1.49
as noted earlier.
Thanks in Advance,
Nick
ql
support, but actually mysql is installed on a different server?
Can I download a precompile mysqli anywhere? The PHP version is 5.1.49
as noted earlier.
Thanks in Advance,
Nick
Interesting. When I went to it I got no such 404 error. Came right up.
Thought-provoking article, too.
N
On Mar 17, 2011, at 10:22 AM, Richard Quadling wrote:
> On 17 March 2011 15:18, Stuart Dallas wrote:
>> On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote:
>> On Wed, Mar 16, 2011 at 1
I have successfully and efficiently used MySQL-based database session storage
for years, even on a website with 5,000 (very) active simultaneous users. I
would highly recommend it.
N
On Mar 17, 2011, at 9:44 AM, Dan Joseph wrote:
> On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci <
> ales
Thank a lot for pointing me to this, as you wrote u are right, haven't started
yet with oo so of course i wasn't able to understand what was this all about.
thanks again
Nick
On May 2, 2010, at 4:52 PM, viraj wrote:
> hi nick,
> :: is what we call 'scope resolution ope
I think si related to class and methods,
JRequest Class have a method called setVar, right? if this is correct sorry for
posting the question, i just haven't started yet classes and methods...;-)
On May 2, 2010, at 4:41 PM, Nick Balestra wrote:
> I am trying to understand how th
#x27;view, 'single'); how do you read it and how do you manage
it?
Cheers, Nick
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thanks! I'll agree with you abotu ur points, i just started php few days
ago..so i am in the first phase of learnign it...and this list is so gr8!
thanks evrybody
cheers, Nick
On May 1, 2010, at 6:11 PM, Programming Guides wrote:
> On Fri, Apr 30, 2010 at 7:33 PM, Nick Balestr
thanks Piero!
i was trying to solve an excercise on "learning php5" (O'reilyl) book.
I am happy abotut his solution with the array_sum funtion you suggested, and my
multidimensional array make much more sense to mee then they suggested solution
that also much more line of code comapred...
loo
hello everybody here is my array(s)
$us_census = array('NY' => array('New York' => 8008278),
'CA' => array('Los Angeles' => 3694820,
'San Diego' =>
1223400),
'IL
Thanks everybody!
On Apr 23, 2010, at 10:05 AM, Ashley Sheridan wrote:
> On Fri, 2010-04-23 at 09:51 +0200, Nick Balestra wrote:
>>
>> Hello guys i am trying to figure out what is worng with thoose special
>> escaped character, like \n \t \r ...
>>
>> A
d like to understand this.
Cheers, Nick
to all and replace "to" with the "cc". I think the best practice is to
take this 5 second to take care of this in order to avoid duplicate message to
others.
cheers
Nick
On Apr 21, 2010, at 12:45 PM, Karl DeSaulniers wrote:
> Exactly.
> :)
>
> Karl
>
>
Hello everybody,
I am NIck, from Locarno (southern switzerland) i am getting into php
development for my own start-up company, maybe there are other people near me
that would be nice to know for networking and alike. I will post here all my
questions if i don't find any answer already on
27;Content-Type: application/msword');
header("Content-Disposition: attachment; filename=PurchaseReq.doc");
-Original Message-
From: Richard Quadling [mailto:rquadl...@googlemail.com]
Sent: Saturday, 27 February 2010 8:45 PM
To: Nick allan
Cc: php-general@lists.php.net
Subject: Re
logue, but with preq.doc instead of PurchaseReq.doc
Preq.php is the calling php file. It has worked before so I'm not sure what
I've changed to have it stop working.
Thanks in advance for any suggestions.
Regards Nick
but I haven't been able to find
anything using google.
Thanks in advance for any suggestions.
Regards Nick
2009/10/28 Jim Lucas:
> Nick Cooper wrote:
>> Hi,
>>
>> I was just wondering what the difference/advantage of these two
>> methods of writing a string are:
>>
>> 1) $string = "foo{$bar}";
>>
>> 2) $string = 'foo'.$bar;
>&
would use a generic search engine but not sure what the first method
is called so don't know where to begin my search.
Thanks for any help.
Nick
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Does anyone have any further information on the PECL Binaries for 5.3, will
they be released?
2009/6/30 pan
> Lukas Kahwe Smith wrote:
> >> Hello!
> >>
> >> The PHP Development Team would like to announce the immediate release
> >> of PHP 5.3.0. This release is a major improvement in the 5.X ser
$_REQUEST is not any less secure then $_POST/$_GET/$_COOKIE, they all
contain raw user data.
The way $_REQUEST is being used in this example is not less secure then
using $_GET. It does open up an exploit but this is not because $_REQUEST is
less secure.
The same exploit exists with $_GET, I could
Sorry to side track the issue, but when did this happen to you on GoDaddy?
I have never experienced this problem. I have been using them for two years
and I often leave domains in the checkout and come back sometimes days later
and they're still $7.95.
2009/4/7 Michael Kubler
> DO NOT USE GO-DAD
2009/3/24 Marc
> $RCDCE0CB7B12D0116B987F9A96911A37B = array('2','3','w','
> d','q','o','e','i','3','p','p','2','e','s','a','n','u','y','d','q','z','s');
> for ($REDCEC4A793439846D7944E29AD2898E9=1;
> $REDCEC4A793439846D7944E29AD2898E9 % 3)){echo
> $RCDCE0CB7B12D0116B987F9A96911A37B[$REDCEC4A79
2009/3/24 abdulazeez alugo
>
> Hello guys,
>
> The list seems boring to me today so I've come up with an idea (you can
> call it a challenge). What if we all wrote to this thread in PHP codes. on't
> get the gist yet? well all it means is that, on this thread, all that we
> should see must be w
2009/3/16 Stuart
> 2009/3/16 Payne
>
> > I had a page working on my opensuse 11.0 32bit, had to upgrade to 11.1
> > 64bit. I have two strange issues.
> >
> > The first my code is being display when I call the page, I looked at the
> > logs and I don't see any errors that explain why this happen.
4: 45701af64172cbc2a33069dfed73fd07
a5: 09d264fcececf51c822c9382b40e3edf
2009/2/12 Jochem Maas :
> Colin Guthrie schreef:
>> 'Twas brillig, and Jochem Maas at 12/02/09 12:47 did gyre and gimble:
>>> Colin Guthrie schreef:
>>>> 'Twas brillig, and Nick Cooper
I am having a problem with spl_object_hash() creating non unique hashes.
I understand with MD5 it is possible to have the same hash for
different strings but this doesn't seem like that problem.
I have created a simple test below, should I report this as a bug or
am I doing something wrong.
PHP
, Prototype, Scriptaculous, Moo
* Previous experience with version control systems, esp. SVN
* Building distributed systems and/or large scale database applications.
If you are interested please send resume to: n...@remycorp.com
Nick Gasparro
Managing Partner, REMY Corp.
Denver, CO 80202
303-539-0448
and able to multi-task and project manage
well --
Nick Gasparro
Managing Partner, REMY Corp.
Denver, CO 80202
303-539-0448 Direct
303-547-7469 Cell
[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>
www.remycorp.com<http://www.remycorp.com/>
Click
here<http://www.linkedin.com/inviteFromPro
On Mon, Oct 27, 2008 at 11:44:50AM -0700, Brian Dunning wrote:
> I've got a script that downloads files queued from a server, and it's
> launched by a Windows Scheduled Task that launches every minute. My
> understanding of the default behavior is that if the task is still
> running a minute
On Sun, Oct 26, 2008 at 10:57:19AM +, Richard Heyes wrote:
> Hi,
>
> Had to show this off - I'm so proud. READ: full of myself... I've
> tried it in Firefox 3, Opera 9.6, Chrome and Safari, all on Windows.
>
> http://dev.rgraph.org/examples/interactive.html
>
> --
> Richard Heyes
>
> HTML5
tool
* Advanced to Expert Photoshop / Illustrator CS3 skills
* Extremely comfortable in a mixed computing environments (Mac, Windows, Linux)
Please reply back with your resume and contact information if you are
interested in the opportunity.
Best,
Nick Gasparro
Managing Partner, REMY Corp.
Denver
.
Software Development Experience with the Following:
* Linux, Apache, PHP 4, PHP 5, MySQL
* Object-oriented design and distributed systems
* Open source development tools, languages and application servers.
* Competent with JavaScript, Prototype, Scriptaculous, Moo
Best,
Nick
On Fri, Apr 25, 2008 at 11:29:05AM -0600, Nathan Nobbe wrote:
> here we are back at the classic syntactic sugar argument. at least weve
> moved past abstract classes and interfaces !
for now :)
--
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
--
PHP General M
#x27;t imagine working with someones code where they
liberally use these types of lazy things. I like structured, ordered
code, and, somehow, using something like this technique doesn't seem
structured or ordered.
--
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
-
ething else!
> }
> }
> }
>
>
> Why is this useful? Because you can add functionality to your save
> page without touching it. This is very powerful when you have a
> shared code base and need to add some parts to it without breaking
> other sites. Since it is ex
'Can you just add XXX' :(
>
> So they actually ask for a porn site?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
:D lol
--
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
--
PH
have some
interest and I would be happy to set up a time to talk.
Best,
Nick Gasparro
Managing Partner, REMY Corp.
Denver, CO 80202
303-539-0448 Direct
303-547-7469 Cell
[EMAIL PROTECTED]
www.remycorp.com
Come visit our booth!!!
Web 2.0 Expo San Francisco 2008 http://www.web2expo.com/sf
San
otype, Scriptaculous, Moo
* OOP, SQL, Linux, HTML
Nick Gasparro
Managing Partner, REMY Corp.
1637 Wazee Street
Denver, CO 80202
303-539-0448 Direct
303-547-7469 Cell
[EMAIL PROTECTED]
www.remycorp.com <http://www.remycorp.com/>
Nick Gasparro
Managing Partner, REMY Corp.
Denve
s/method,
> what data is actually allowed to be injected into that variable. Whereas
> the second example would allow you to stuff any type of data into that
> class variable. That might not be a good thing.
>
That's a relatively narrow minded response to my point, since I gave
h the event processing
> end loop
> }
>
> the other, probably better option would be to have a progress area, that
> was/is a jscript/ajax based, that talked/polled the server to determine the
> overall status of the "action" as it's being performed.
>
> w
On Fri, Apr 18, 2008 at 09:58:14AM -0600, Nathan Nobbe wrote:
> On Thu, Apr 17, 2008 at 5:46 PM, Nick Stinemates <[EMAIL PROTECTED]>
> wrote:
>
> > > If I wrote the console application in a c language (and compiled) would
> > one
> > > expect to see any i
On Fri, Apr 18, 2008 at 10:25:29AM -0600, Nathan Nobbe wrote:
> On Thu, Apr 17, 2008 at 5:43 PM, Nick Stinemates <[EMAIL PROTECTED]>
> wrote:
>
> > On Thu, Apr 17, 2008 at 10:05:11AM +0200, Michael Preminger wrote:
> > > Hello!
> > >
> > > Seems th
quite a few questions my self.. You can't do a
> progress bar in PHP since by the time it gets to the browser, PHP is done
> doing what it does.
This is actually false, at least on my system(s).
Try this out:
--
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
--
anks for the consideration and
> looking into those.
>
> At this point some of you may encourage me to go to C++ so i stop with this
> question...but I'd like to hear if you all agree that perhaps it is time to
> pull out the 50 lbp lump hammer?
Still disagree. I have
On Thu, Apr 17, 2008 at 10:05:11AM +0200, Michael Preminger wrote:
> Hello!
>
> Seems that PHP gets more and more object oriented, which is good.
>
> I am now running a course in PHP, using PHP 5, where we are going to
> use the *DOM* interface. I am trying to teach them good OO practices,
> meanin
e would you
> recommend?
Depends on the task, but based on this e-mail I have a feeling you'll
encounter the same problem.
--
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
at if you are
interested.
Nick Gasparro
Managing Partner, REMY Corp.
1637 Wazee Street
Denver, CO 80202
303-539-0448 Direct
303-547-7469 Cell
[EMAIL PROTECTED]
www.remycorp.com
Greg Donald wrote:
> On 2/19/08, Nick Stinemates <[EMAIL PROTECTED]> wrote:
>
>> I said, simply, returning an array of objects was usually an indication
>> of poor design.
>>
>
> No it's not. Nearly every MVC framework in existence implements som
channel for your users to interact with
you, and for you to (potentially) respond to them.
You're looking for SMPP packages.
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Nathan Nobbe wrote:
> On Mon, Feb 18, 2008 at 9:06 PM, Nick Stinemates <[EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>> wrote:
>
> Thats a good example, and a good reason for passing values by
> Reference
> instead of by Value.
>
> I have fo
Jim Lucas wrote:
> Nick Stinemates wrote:
>> Nathan Rixham wrote:
>>> Robert Cummings wrote:
>>>> On Mon, 2008-02-18 at 21:09 -0600, Larry Garfield wrote:
>>>>> On Monday 18 February 2008, Nick Stinemates wrote:
>>>>>
>>>
Robert Cummings wrote:
> On Tue, 2008-02-19 at 21:51 -0800, Nick Stinemates wrote:
>
>> Robert Cummings wrote:
>>
>>> On Tue, 2008-02-19 at 21:24 -0800, Nick Stinemates wrote:
>>>
>>>
>>>> I said, simply, returning an array
n use:
$result = $xml->xpath('//coordinates');
I have a feeling you'll want to do more parsing than that, thought.
In the case of your example, I believe it should be the following:
$result = $xml->xpath('Folder/Placemark/LineString/coordinates'); _or_
$
ille
fwrite($fp, $out); //send the headers
while (!feof($fp)) {
$buff .= fgets($fp, 128); //read the response
}
fclose($fp); //close the socket
if (strstr($buff, "404")) { //analyze.
echo "no alerts";
} else {
echo "alerts";
}
?&g
Robert Cummings wrote:
> On Tue, 2008-02-19 at 21:24 -0800, Nick Stinemates wrote:
>
>> I said, simply, returning an array of objects was usually an indication
>> of poor design.
>>
>
> Please elaborate as to the "why" of it being an indication of
Nathan Nobbe wrote:
> On Feb 19, 2008 11:52 PM, Greg Donald <[EMAIL PROTECTED]> wrote:
>
>
>> On Feb 19, 2008 9:27 PM, Nick Stinemates <[EMAIL PROTECTED]> wrote:
>>
>>> Support != good design habits.
>>>
>> So you pr
Greg Donald wrote:
> On 2/18/08, Nick Stinemates <[EMAIL PROTECTED]> wrote:
>
>> I have found, however, that if I ever need to return /multiple/ values,
>> it's usually because of bad design and/or the lack of proper encapsulation.
>>
>
> Yeah, t
Nathan Rixham wrote:
> Robert Cummings wrote:
>> On Mon, 2008-02-18 at 21:09 -0600, Larry Garfield wrote:
>>> On Monday 18 February 2008, Nick Stinemates wrote:
>>>
>>>>>> I have found, however, that if I ever need to return /multiple/
>>>>
al page for that function - it will tell you how to detect
>> errors.
>>
>> -Stut
>>
>> --
>> http://stut.net/
>>
>>
>
>
http://php.net/fopen
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemat
Robert Cummings wrote:
> On Mon, 2008-02-18 at 18:06 -0800, Nick Stinemates wrote:
>
>> C.R.Vegelin wrote:
>>
>>> >> $in = 4;
>>> calcpows($in, $pow2, $pow4);
>>> echo "in = $in pow2=$pow2 pow4=$pow4";
>>>
>>
>
>
> HTH
>
Thats a good example, and a good reason for passing values by Reference
instead of by Value.
I have found, however, that if I ever need to return /multiple/ values,
it's usually because of bad design and/or the lack of proper encapsulation.
--
==
N
thunderbird for looking like you responded to me.
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
t;;
> }
> }
> ?>
>
> Outputs the expected. Must be an error, maybe fatal or parse before the
> method call or maybe your method does execute you just are expecting
> something different?
>
> -Shawn
>
>
What part of my example was unclear?
--
==
Petrus Bastos wrote:
> I'm testing on FreeBSD. I can use any command through system(), but the zip
> command doesn't works! I don't know why.
>
>
> On Feb 18, 2008 4:06 PM, Nick Stinemates <[EMAIL PROTECTED]> wrote:
>
>
>> Petrus Bastos wrote:
&
e
testing...
test();
?>
Definitely works.
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
>
> Thanks again and sorry for the inconvenience,
> Petrus Bastos.
>
> On Feb 18, 2008 2:37 PM, Nick Stinemates <[EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>> wrote:
>
> Petrus Bastos wrote:
> > Richard,
> >
> > Unfortunately, I can
orking/looking for the
exact type, it's time to use MIME as it is more reliable than something
like a filename.
http://us2.php.net/manual/en/ref.mime-magic.php
Good luck.
======
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL P
invent the wheel to a square, just in case they got it
wrong. [=
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
o get creative, Petros. You're in a bind, and I
assume you need to get this done, so you have the following options (in
the order I would do it in..)
-> Turn on exec()
-> You can use/modify an app I wrote (in python) which accepts UDP
packets and executed commands based off of it.
Richard Lynch wrote:
> On Sun, February 17, 2008 1:57 pm, Nick Stinemates wrote:
>
>> Petrus Bastos wrote:
>>
>>> Hi Nick,
>>>
>>> Sorry, but I forgot to tell you that I can't use this exec
>>> neither
>>> system com
ge/File_Archive
>>
>> --
>> Postgresql & php tutorials
>> http://www.designmagick.com/
>>
>>
>
>
I'm sure you know what you're doing, but maybe you'd be better off
letting us know the task / process to better understand wh
John Meyer wrote:
> Børge Holen wrote:
>> On Monday 18 February 2008 00:10:30 John Meyer wrote:
>>
>>> Daniel Brown wrote:
>>>
On Feb 17, 2008 5:37 PM, nihilism machine
<[EMAIL PROTECTED]>
>> wrote:
>>
> i am using this code to get the extension of a filename:
>
>>>
Petrus Bastos wrote:
> Hi Nick,
>
> Sorry, but I forgot to tell you that I can't use this exec neither
> system commands because they are disabled for security precautions. So, Do
> you have any other ideas on how can I do that?
>
> Thanks for your help,
> Petrus
the relatively weak encryption
provided by standard zipfile
utilities.)
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Adil Drissi wrote:
> Hi everybody,
>
> I need help with sessions.
> I have a simple authentification relying only on
> sessions (i don't use cookies). After the user submits
> his username and password, the script checks if that
> corresponds to a record in a mysql table. If this is
> the case "$_S
$NAMEFORMAT . $data[0] . ""; // print the name
echo $MESSAGEFORMAT . $data[1]; // print the text
}
fclose($boardFileHandle);
?>
If you have any questions regarding the implementation I suggest the
following reading material:
http://us3.php.net/manual/en/function.f
regards,
Nick Gasparro
Managing Partner, REMY Corp.
1637 Wazee Street
Denver, CO 80202
303-539-0448 Direct
303-547-7469 Cell
<mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED]
<http://www.remycorp.com> www.remycorp.com
lt;<<
Regards,
--
Nick
__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
An example:
Hope it helps!
--
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM: Nick Stinemates
MSN: [EMAIL PROTECTED]
Yahoo: [EMAIL PROTECTED]
==
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
iling List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--
You can take a look at:
http://projects.stinemates.org/
And click on the 'View Source' link.
==
Nick Stinemates ([EMAIL PROTECTED])
http://nick.stinemates.org
AIM
1 - 100 of 756 matches
Mail list logo