Search found 3 matches

by pascalganaye
Fri May 02, 2003 2:44 pm
Forum: PHP - Code
Topic: Adding POST data to a redirect?
Replies: 11
Views: 2608

You could perhaps generate a page who will post automatically the value you want to post : <body onload="javascript:document.form1.submit();"> <form action="http://ww.otherserver.com/post.php?xx=4&yy=2" method="post" name="form1"> <input name="value1&...
by pascalganaye
Fri May 02, 2003 2:23 pm
Forum: PHP - Code
Topic: Adding POST data to a redirect?
Replies: 11
Views: 2608

You can do it with javascript

I don't know if it helps, I wanted to login in phpbb without displaying the form. I managed to do it this way : $HTTP_POST_VARS&#1111;'username'] = $username; $HTTP_POST_VARS&#1111;'login'] = "Connexion"; $HTTP_POST_VARS&#1111;'redirect'] = ""; $HTTP_POST_VARS&#11...
by pascalganaye
Fri May 02, 2003 2:10 pm
Forum: PHP - Code
Topic: Nice Regular expression problem
Replies: 0
Views: 514

Nice Regular expression problem

I need to extract emails and name from the sender part of an email address. The sender has the usual form : Pascal GANAYE <p.ganaye@bigfot.com> But it can also be : "Pascal GANAYE <p.ganaye@bigfot.com>" Or : " Pascal GANAYE " <p.ganaye@bigfot.com > Or : Pascal GANAYE [p.ganaye@bi...