Re: [PHP] session id contains illegal characters

2006-10-27 Thread Patrick Aljord
On 10/27/06, Chris Shiflett <[EMAIL PROTECTED]> wrote: Patrick Aljord wrote: > I'm moving my page from php4 to php5 and I get this error: > Warning: Unknown: The session id contains illegal characters, > valid characters are a-z, A-Z, 0-9 and '-,' in Unknown on

[PHP] session id contains illegal characters

2006-10-26 Thread Patrick Aljord
hey all, I'm moving my page from php4 to php5 and I get this error: Warning: Unknown: The session id contains illegal characters, valid characters are a-z, A-Z, 0-9 and '-,' in Unknown on line 0 this is the code I use to start my session: $_SESSION['user_id']=$user_id; $_SESSION['user_log

[PHP] need help to put input text value into url

2006-04-25 Thread Patrick Aljord
I have a form like this: while this is working fine, I would like the url of search.php to be something like search.php?q="value+of+search_text" eg, if I enter "php rules" in my text box, the url should be http://myfakepage.com/search.php?q="php+rules"; any idea how to do that? thanx in advan

Re: [PHP] Reverse Engineering of Smarty

2006-02-05 Thread Patrick Aljord
There is unfortunately no way to reverse your code back, the only thing you can do is google for "file recovery techniques" or just recode the whole thing. If you don't have time for that, maybe something like http://www.joomla.org/ could save your day. Hope that helps Pat On 2/5/06, Zareef Ahme

Re: [PHP] need help to update a mysql table from dynamic form

2006-02-05 Thread Patrick Aljord
On 2/4/06, Sumeet <[EMAIL PROTECTED]> wrote: > Patrick Aljord wrote: > > could someone please help me on that one? > > http://hashphp.org/pastebin?pid=6156 > > > > basically this is how I do: > > I display a mysql table in an html table and I put each val

[PHP] need help to update a mysql table from dynamic form

2006-02-04 Thread Patrick Aljord
could someone please help me on that one? http://hashphp.org/pastebin?pid=6156 basically this is how I do: I display a mysql table in an html table and I put each value in an input text box. At the bottom I put a submit button to update changes. My question is how do I update everything knowing th