[PHP] Re: Programmers and developers needed

2012-09-17 Thread agbo onyador
The growing power of the internet and global networks. (on the world’s politics, economies and even on daily life of ordinary people) Programmers and developers needed: We are living in an age in which social networks are getting more and more powerful. They are not only creating a virtual future

Re: [PHP] PHP from ASP using AJAX?

2012-09-17 Thread Ashley Sheridan
On Mon, 2012-09-17 at 23:03 -0700, Girish Talluru wrote: > Hi There, > > > Can we able to call PHP script from ASP using AJAX? > > > Thanks, > > Girish AJAX is just Javascript making a call to a remote web service, so it doesn't really matter what that web service is written in. -- Thanks

Re: [PHP] tricky code problem

2012-09-17 Thread shiplu
Without relevant code and what have you tried your questions don't make any sense. -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader

Re: [PHP] tricky code problem

2012-09-17 Thread Matijn Woudt
On Mon, Sep 17, 2012 at 11:12 PM, Jim Giner wrote: > This is a tricky one but let's see if I can explain it. > > 1 - using a menu screen I have a link that calls a js function that opens a > popup with a form in it; > > 2 - the form receives some user input (a login) and then the user clicks a > s

[PHP] tricky code problem

2012-09-17 Thread Jim Giner
This is a tricky one but let's see if I can explain it. 1 - using a menu screen I have a link that calls a js function that opens a popup with a form in it; 2 - the form receives some user input (a login) and then the user clicks a submit button; 3 - the button has an onclick that calls a j

[PHP] Re: bucle while for to msqyl

2012-09-17 Thread El Ale...
Good people i finish thanks everyone!! this script finished: datos.log'); sleep(30); echo " se reanuda | "; ### termina el break ### } else { ### comienza el envio de el mensaje ya que no se encontro ningun error en los logs ### echo " Se prepara | "; exec("

Re: [PHP] Expected behaviour or bug?

2012-09-17 Thread Matijn Woudt
On Mon, Sep 17, 2012 at 8:57 PM, Camilo Sperberg wrote: > > On 17 sep. 2012, at 10:55, Frank Arensmeier wrote: > >> 17 sep 2012 kl. 10.50 skrev Camilo Sperberg: >> >>> Hello list, I have a little question with PHP's internal working. I've >>> managed to reduce the test to the following lines: >>

Re: [PHP] Expected behaviour or bug?

2012-09-17 Thread Camilo Sperberg
On 17 sep. 2012, at 10:55, Frank Arensmeier wrote: > 17 sep 2012 kl. 10.50 skrev Camilo Sperberg: > >> Hello list, I have a little question with PHP's internal working. I've >> managed to reduce the test to the following lines: >> >> $globalVariable = 'i am a global variable'; >> function tes

Re: [PHP] Expected behaviour or bug?

2012-09-17 Thread Simon J Welsh
On 17/09/2012, at 8:50 PM, Camilo Sperberg wrote: > Hello list, I have a little question with PHP's internal working. I've > managed to reduce the test to the following lines: > > $globalVariable = 'i am a global variable'; > function testFunction() { > global $globalVariable; > un

Re: [PHP] Expected behaviour or bug?

2012-09-17 Thread Frank Arensmeier
17 sep 2012 kl. 10.50 skrev Camilo Sperberg: > Hello list, I have a little question with PHP's internal working. I've > managed to reduce the test to the following lines: > > $globalVariable = 'i am a global variable'; > function testFunction() { > global $globalVariable; > unset($gl

[PHP] Expected behaviour or bug?

2012-09-17 Thread Camilo Sperberg
Hello list, I have a little question with PHP's internal working. I've managed to reduce the test to the following lines: $globalVariable = 'i am a global variable'; function testFunction() { global $globalVariable; unset($globalVariable); } testFunction(); if(isset($globalVaria