I think I'm on the right track with:

<?php

$i = $value++;

// Show first link
echo '<a href="'.$PHP_SELF.'?add_form='.$value.'">
        New paragraph
        </a>
        </font>';
        
// Isert form html into $data_fields variable
$data_fields = '<html html blah blah>
                <a href="'.$PHP_SELF.'?add_form='.$value.'">
                New paragraph
                </a>';

while ($i = $value) {
echo $data_fields;
}

?>

The only problem is that it runs for an infinite number of times, I want
it to run for as many times as the http://domain.com?add_form=1 (IE: 1
in this case) defines.

- Vic

______________________________________________________________________ 
Post your ad for free now! http://personals.yahoo.ca

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

Reply via email to