Open file without <a href
am 29.08.2007 11:53:48 von salonowiecCan I modify .html page so that it opens a file immediately "onload",
without link like
img src...).
Can I modify .html page so that it opens a file immediately "onload",
without link like
img src...).
Scripsit salonowiec:
> Can I modify .html page so that it opens a file immediately "onload",
> without link like
> code is img src...).
In a sense you could, using
And you are right! My problem is to rename the file to .php and to put some
small php code at the beginning so as the page would be available for a
group of users only. Thanks for attention and asking for further tip...
Uzytkownik "Jukka K. Korpela"
news:NAbBi.214946$Jg4.72082@reader1.news.saunalahti.fi...
> Scripsit salonowiec:
>
>> Can I modify .html page so that it opens a file immediately "onload",
>> without link like
>> code is img src...).
>
> In a sense you could, using
salonowiec,
PHP is a pre-processor service that is executed on the web server that
supports your site, not in the browsers. So all of your visitors would
be covered if PHP is enabled on your web server, regardless of the
browser or host.
I use "php includes" for my common masthead/navigation bar, footers,
etc. After the server has processed the php file, these statements are
removed and replaced by the contents of the included files and delivered
to the browser for rendering. You can see this by doing a "view source"
in your browser after the page has loaded.
I normally include comment wrappers in the included files or around the
"include" statements for ease of debugging.
Art
On 8/29/07 6:13 AM, salonowiec wrote:
> And you are right! My problem is to rename the file to .php and to put some
> small php code at the beginning so as the page would be available for a
> group of users only. Thanks for attention and asking for further tip...
>
>
> Uzytkownik "Jukka K. Korpela"
> news:NAbBi.214946$Jg4.72082@reader1.news.saunalahti.fi...
>> Scripsit salonowiec:
>>
>>> Can I modify .html page so that it opens a file immediately "onload",
>>> without link like
>>> code is img src...).
>>
>> In a sense you could, using