Forum: PHP Sep 27th, 2008 |
| Replies: 8 Views: 1,812 actually it was really simple. just by adding action='index.php'. i made some mistake earlier thinking it didn't. |
Forum: PHP Sep 23rd, 2008 |
| Replies: 8 Views: 1,812 Thanks for your detailed reply.
However the project I'm working on is quite complex, and I wouldn't want to make yet another page only for getting rid of the get data. Isn't it strange that the... |
Forum: PHP Sep 22nd, 2008 |
| Replies: 8 Views: 1,812 not even this works:
<?
header("location:index.php");
?>
<html>
<body>
<? |
Forum: PHP Sep 21st, 2008 |
| Replies: 8 Views: 1,812 This code illustrates the problem:
<html>
<body>
<?
echo 'Post data: ' . $_POST['test'] . '<br>';
echo 'Get data: ' . $_GET['test'] . '<br><br>';
?> |
Forum: PHP Sep 7th, 2008 |
| Replies: 8 Views: 1,812 Hello, I've got a problem with get data.
To display a form I use GET data, visiting the url: page.php?a=b. When entering the page there is a form with POST method: <form method="post">
The... |
Forum: Python Jan 2nd, 2007 |
| Replies: 0 Views: 2,792 Hello!
I'm trying out the python irclib and it's working fine. I have noticed that when I run my program there is a text cursor displayed under the outputs from print. I can print text there and... |