frankriedel Posted November 11, 2005 Share Posted November 11, 2005 Is it possible to make a PHP code that redirect to another page if a recordset is EMPTY ?? If so - give an example please ;o) Regards Frank Link to comment https://forums.phpfreaks.com/topic/2846-if-recordset-is-empty-goto/ Share on other sites More sharing options...
jweiss Posted November 14, 2005 Share Posted November 14, 2005 Hey Frank, Insert this into your page and then highlight it and tell DW to show when there are no records [!--fonto:Courier New--][span style=\"font-family:Courier New\"][!--/fonto--][blockquote]header("Location: [a href=\"http://www.example.com");\" target=\"_blank\"]http://www.example.com");[/a][/blockquote][!--fontc--][/span][!--/fontc--] Or, if you're redirecting to another page on your site, this snip will redirect to the index page. [!--fonto:Courier New--][span style=\"font-family:Courier New\"][!--/fonto--][blockquote]header("Location: http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/index.php");[/blockquote][!--fontc--][/span][!--/fontc--] If you have any problems let us know. -jeremy Link to comment https://forums.phpfreaks.com/topic/2846-if-recordset-is-empty-goto/#findComment-9644 Share on other sites More sharing options...
frankriedel Posted November 14, 2005 Author Share Posted November 14, 2005 Thx - Sir Working fine Link to comment https://forums.phpfreaks.com/topic/2846-if-recordset-is-empty-goto/#findComment-9645 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.