March 11, 200520 yr Author Is there a way to capture a url? I would like to have a catch all for "name.domain.com", get filemaker to catch the url and and go to the appropriate record based on the first part of the url.
March 11, 200520 yr Is there a way to capture a url? I would like to have a catch all for "name.domain.com", get filemaker to catch the url and and go to the appropriate record based on the first part of the url.
March 11, 200520 yr Author Is there a way to capture a url? I would like to have a catch all for "name.domain.com", get filemaker to catch the url and and go to the appropriate record based on the first part of the url.
March 12, 200520 yr If you are using CDML you can use: [FMP-ClientAddress] If you are using FX/PHP you can use: $_SERVER['REMOTE_HOST'] All the best. Garry
March 12, 200520 yr If you are using CDML you can use: [FMP-ClientAddress] If you are using FX/PHP you can use: $_SERVER['REMOTE_HOST'] All the best. Garry
March 12, 200520 yr If you are using CDML you can use: [FMP-ClientAddress] If you are using FX/PHP you can use: $_SERVER['REMOTE_HOST'] All the best. Garry
March 13, 200520 yr Author sorry I guess what I am asking for is there a way to get the users previous url that got them to the current page?
March 13, 200520 yr Author sorry I guess what I am asking for is there a way to get the users previous url that got them to the current page?
March 13, 200520 yr Author sorry I guess what I am asking for is there a way to get the users previous url that got them to the current page?
March 13, 200520 yr With PHP you can use: $_SERVER['HTTP_REFERER'] From the PHP online manual: "The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted." Good Luck. Garry p.s. "User Agent" equals Browser.
March 13, 200520 yr With PHP you can use: $_SERVER['HTTP_REFERER'] From the PHP online manual: "The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted." Good Luck. Garry p.s. "User Agent" equals Browser.
March 13, 200520 yr With PHP you can use: $_SERVER['HTTP_REFERER'] From the PHP online manual: "The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted." Good Luck. Garry p.s. "User Agent" equals Browser.
March 14, 200520 yr in cdml it is [FMP-Link: CharacterCodes ] Parameter(s) First parameter: A series of letters, in any order, representing the parts of the URL to omit. d - omit database section of the url r - omit format file section of the url l - omit layout section of the url s - omit sort criteria section of the url f - omit find criteria section of the url m - omit max section of the url k - omit skip section of the url t - omit token section of the url a - omit action section of the url
March 14, 200520 yr in cdml it is [FMP-Link: CharacterCodes ] Parameter(s) First parameter: A series of letters, in any order, representing the parts of the URL to omit. d - omit database section of the url r - omit format file section of the url l - omit layout section of the url s - omit sort criteria section of the url f - omit find criteria section of the url m - omit max section of the url k - omit skip section of the url t - omit token section of the url a - omit action section of the url
March 14, 200520 yr in cdml it is [FMP-Link: CharacterCodes ] Parameter(s) First parameter: A series of letters, in any order, representing the parts of the URL to omit. d - omit database section of the url r - omit format file section of the url l - omit layout section of the url s - omit sort criteria section of the url f - omit find criteria section of the url m - omit max section of the url k - omit skip section of the url t - omit token section of the url a - omit action section of the url
Create an account or sign in to comment