Re: [PHP] Sessions Problems

2004-09-04 Thread Octavio Herrera
Hi guys well I've been trying with named sessions, and nothing, then I did a pop up window to show me the $_SESSION content and when I reload that window a ramdom number of times, then the session expires and the $_SESSION array disappears!!! what can be this due to?? Im using PHP 4.3.3 and if you

Re: [PHP] Sessions Problems

2004-09-03 Thread Octavio Herrera
No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Large database, slow search times

2004-09-02 Thread Octavio Herrera
Yup that is the solution, INDEX and match on Octavio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sessions Problems

2004-09-02 Thread Octavio Herrera
Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously opened in the admin page, h

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] converting a Recorset into an XML string

2003-01-27 Thread Octavio Herrera
Sean, could you please send me how do you will do the function to convert a recordset into an XML string? Thank You OCTAVIO HERRERA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] converting a Recorset into an XML string

2003-01-27 Thread Octavio Herrera
Thank you Sean , your comment was useful for me, I was having that problem and what I was doing is changing every record in my database that have an & or ' on it Thank you again -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] converting a Recorset into an XML string

2003-01-25 Thread Octavio Herrera
=$fila[$cont]; $xml.="<".$nombre_campo.">".$valor_campo."\n"; $cont++; } $xml.="\n"; $cont1++; } if($padre!="-1") $xml.="\n"; return $xml; } I hope this will be helpful for you OCTAVIO HERRERA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: parse error, unexpected $end ...

2003-01-24 Thread Octavio Herrera
This is the source code Your Login or Password is Incorrect"; }else{ echo "\n"; for($a=0;$a<$filas;$a++){ $fila=mysql_fetch_array($rs); echo " \n"; echo " ".$fila["id"]."\n"; echo " ".$fila["name"]."\n"; echo " ".$fila["born"]."\n"; echo " ".$fila["occupation"]."\n"; echo "

[PHP] parse error, unexpected $end ...

2003-01-24 Thread Octavio Herrera
Hello, my name is octavio, Im new to this news group, I have a problem, Im getting the following error message: Parse error: parse error, unexpected $end in c:\appserv\www\octavio\user_data.php on line 63 What is this? I have looked all the source code and at the end of file there is nothing wron