Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

HTML vs SHTML vs PHTML

What is the difference between: HTML SHTML PHTML Why and when i'll use which one?
3
votes
1answer
40 views

Setting cookie leads to an unexpected behaviour

I have a multilingual website with the possibility to switch between German and English. I want to store the chosen language in a cookie so that the visitor don't have to switch it over and over ...
3
votes
2answers
716 views

What is SHTML

Recently I came to know about SHTML. And also I have look at site having extensions as .shtml. What is the purpose of SHTML in what ways it differ from HTML and DHTML
2
votes
1answer
86 views

Komodo Edit does not support shtml code hinting?

I have searched a lot about this feature but it seems that Komodo edit does not support any shtml intellisense. I cannot believe this as I finally found a great HTML/CSS/JavaScript/jQuery editor but ...
1
vote
1answer
51 views

Rendering of PHP include in SHTML file

I am using a include of a php script in my shtml page. My server is setup fine to detect and render the mixed php. The page renders the script fine in all browsers. However... when trying to ...
1
vote
3answers
388 views

PHP or htaccess make dynamic url page to go 404 when item is missing in DB

Typical scenario: DB items are displaied in page http://...?item_id=467 User one day deletes the item Google or a user attempts to access http://...?item_id=467 PHP diggs into DB and sees items ...
1
vote
3answers
87 views

I have PHP code that needs to be referenced in every single shtml page, is the below possible?

Hey everyone... I'm not too familiar with PHP... but I have PHP code that basically "includes" a file if a condition exists. This PHP code is going to be pretty lengthy and I was wondering if it was ...
1
vote
3answers
84 views

If I have one nav_bar.html file that is included on other pages, how do I show which menu item is active?

Hey everyone... thanks for taking the time to read this. I have a JavaScript (jQuery) navigation bar on my main page that is simply "included" on my page. For example, I have index.shtml that ...
1
vote
2answers
240 views

How to include Perl into shtml files

Hi I am trying to include a perl script within my shtml file. Unfortunately when I do my script doesnt seem to run but instead it just displays the content of the script. The code I am using is as ...
1
vote
1answer
1k views

SSI commands not working is for shtml files in iis

the following code should show either the port or servername not both i always get both no matter what ? <!--#if expr="${SERVER_PORT} = 80" --> <!--#echo var="SERVER_PORT"--> ...
1
vote
5answers
211 views

Is “include file” in shtml the best method to keep non-database changing data

We have a website that uses '#include file' command to roll info into some web pages. The authors can access the text files to update things like the occasional class or contact information for the ...
0
votes
0answers
9 views

Link to auto select some combobox of a shtml page

I want a link that the combobox itens are already selected to the ones I want at the shtml page. Is there a way I can do that? the site is: ...
0
votes
0answers
41 views

controlling webpage layout

i have a webpage , problem is when i am minimizing (by clicking maximize button on title bar) webpage, everything shuffle which is not looking good.is there any CSS property for controlling the layout ...
0
votes
0answers
23 views

Last 2 lines in SSI are not included in parsed file

I tried to include "header.html" in "index.shtml". Following was the code in "header.html": 1. <div id="main"> 2. <div id="wrap"> 3. <div id="header"> 4. <table> 5. <tr> ...
0
votes
4answers
177 views

Log user ip address, date and time

Is there a simple script or piece of code I can add to my page to keep a log of every visitor, the date and time they hit the page and IP address? And what would be the best way to do this... ...
0
votes
1answer
62 views

How to run shtml include in php

I have dozens of .shtml files on the server which include this statement to include .inc files: <!--#include virtual="../v4/rightmenu.inc" --> This is exactly how it shows on the source ...
0
votes
1answer
74 views

Will Google index my shtml page's content if it is printed by Javascript?

I have SHTML files which I'd like to implement the following: Step 1: Let's say I have a SHTML page which displays "You must have Javascript turned on to view this content" by default / in a ...
0
votes
4answers
137 views

Can I include a PHP file in an SHTML file and store the result in a SHTML variable?

I want to include a PHP file in an SHTML file and store the result in a SHTML variable and include different things depending on the result. Example: Assume the PHP script would echo 0/1 in plain ...
0
votes
2answers
78 views

Is it possible to setup a redirect in a PHP file which is guaranteed to work?

I want to make a call to/include a PHP script which would force a re-direct to another page. (The other page will contain a captcha and will re-direct back if entered correctly). I need the most ...
0
votes
3answers
85 views

Change shtml page to php

I have a site with pages with shtml extension, primarily done to have menu navbar display corrctly with SSI. I now am adding a page with php, and to have this page work properly I have given it a php ...
0
votes
1answer
52 views

Generating a random number in an SHTML page

I need to attach a random number to a query string in an SHTML page. It's straightforward to generate the value in PHP: function get_random_id(){ srand ((double) microtime( )*1000000); return ...
0
votes
1answer
67 views

How to implement Server side include with navigation links

I have 4 html pages. 1 of them is having common UI which needs to be available on all the other pages. In navigation page there are 3 links which points to the other 3 pages. I have used include to ...
0
votes
2answers
635 views

Extend footer wrap to width of page

I've made a footer wrap outside the content wrap (which everything else is in). I would like to make the footer wrap extend to fill the width of the page and I would like it to be fixed on the ...
0
votes
1answer
83 views

handling requested URL when 404

I had to move a CMS to a subfolder. as a result, the URL saved in search engines are pointing to broken link. what I did to solve the problem is coding a page with PHP as 404 page that gets the ...
0
votes
3answers
96 views

HTML Image Tags

I was asked to resolve an issue with shtml file and the problem is like this: A person was asked to edit an shtml file to add a new radio button. She downloaded the file, added some content and ...
0
votes
1answer
66 views

How to test SHTML sites in Dreamweaver?

I am creating an SHTML website and I am wondering how can you test it in Dreamweaver. Do you simply change the extensions back to HTML?
0
votes
2answers
910 views

Configuration of SSI in IIS 7

I've installed ServerSideIncludes module on my computer and it works great with one exception. <!--#include virtual="meta.inc" --> The line above is causing the problem. I know I must change ...
0
votes
3answers
2k views

IIS not serving shtml files properly, instead the browser tries to download the file

Okay, so I'm at a temporary office and they've given me a machine with XP to do dev on. Awesome. I've set the site up in IIS and I need it to serve shtml files. Problem is, when I browse to the ...
0
votes
4answers
3k views

How to include PHP file in SHTML pages?

I have a shtml file index.shtml in which I want to include a PHP file which performs some programing and returns HTML data. I am trying to include my PHP file but I don't know how to do that, I tried ...