Whatever form information you want to pass has to be part of the form.

WILLEMS Wim (BMB) wrote:
<select name=database size=1>

In the second script, the value of this will be in $_POST["database"].

<?php
 $wim = 5; /* this is added to test the passing of the variables -
doesn't work either */

$wim isn't part of your form - it will /not/ get saved into the next PHP script. You can handle it through input type hidden elements in the form, or through sessions, for example, depending on what you want to do with it.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to