I think I understand your question. If I do, the answer is:
use PHP :-)
Seriously though, that's what PHP is all about. Anywhere in your HTML code,
if you need to programatically set something, put your <? tag, your PHP
code, then ?> to close it out.
Example:
<input type="hidden" name="league_id" value="<?php echo $league_id;?>">
This sets the field called league_id to the variable league_id. If
$league_id was equal to 10, the HTML code you would see when you viewed the
source is:
<input type="hidden" name="league_id" value="10">
HTH
Joe
"Rick Emery" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I don't understand the phrase "html generated web pages". What are you
> trying to do?
>
> rick
> -----Original Message-----
> From: RSalomo [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 03, 2001 12:28 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-DB] html generated web pages
>
>
> hello,
>
> how can i make html generated web pages, and control images and format for
> that html page?
> (for example like devshed, they have link like this:
> .../.../some_folder/page1.html).
> where can i learn them? i.m a newbie here.
>
> is this has something to do with phplib7.2?
>
> thanks in advance.
>
> rudy
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]